Java Thread Executor Execute executeAsynchronously(Runnable r)

Here you can find the source of executeAsynchronously(Runnable r)

Description

execute Asynchronously

License

Apache License

Declaration

public static void executeAsynchronously(Runnable r) 

Method Source Code

//package com.java2s;
/**//from   w ww  .  j a v  a2s.co m
 * Copyright 2012 Tobias Gierke <tobias.gierke@code-sourcery.de>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;

public class Main {
    private static final ExecutorService pool = new ThreadPoolExecutor(4, 4, 60, TimeUnit.SECONDS,
            new ArrayBlockingQueue<Runnable>(100));

    public static void executeAsynchronously(Runnable r) {
        pool.submit(r);
    }
}

Related

  1. execute(Runnable runnable)
  2. execute(Runnable task)
  3. execute(Runnable task)
  4. execute(String name, Runnable runnable)
  5. executeAndWait(final Runnable r)
  6. executeForever(final Runnable runnable)
  7. executeFuture(Callable callable)
  8. executeInCachedPool(Runnable runnable)
  9. executeInThread(Runnable r)