|
JavaTM Platform Standard Ed. 6 |
|||||||||
| 前 次 | フレームあり フレームなし | |||||||||
| ScheduledExecutorService を使用しているパッケージ | |
|---|---|
| java.util.concurrent | 並行プログラミングでよく使用されるユーティリティークラスです。 |
| java.util.concurrent での ScheduledExecutorService の使用 |
|---|
| ScheduledExecutorService を実装している java.util.concurrent のクラス | |
|---|---|
class |
ScheduledThreadPoolExecutor
指定された遅延時間後または定期的にコマンドを実行するように追加でスケジュールできる ThreadPoolExecutor です。 |
| ScheduledExecutorService を返す java.util.concurrent のメソッド | |
|---|---|
static ScheduledExecutorService |
Executors.newScheduledThreadPool(int corePoolSize)
指定された遅延時間後、または周期的にコマンドの実行をスケジュールできる、スレッドプールを作成します。 |
static ScheduledExecutorService |
Executors.newScheduledThreadPool(int corePoolSize,
ThreadFactory threadFactory)
指定された遅延時間後、または周期的にコマンドの実行をスケジュールできる、スレッドプールを作成します。 |
static ScheduledExecutorService |
Executors.newSingleThreadScheduledExecutor()
指定された遅延時間後、または周期的にコマンドの実行をスケジュールできる、単一スレッドの executor を作成します。 |
static ScheduledExecutorService |
Executors.newSingleThreadScheduledExecutor(ThreadFactory threadFactory)
指定された遅延時間後、または周期的にコマンドの実行をスケジュールできる、単一スレッドの executor を作成します。 |
static ScheduledExecutorService |
Executors.unconfigurableScheduledExecutorService(ScheduledExecutorService executor)
定義済みのすべての ScheduledExecutorService メソッドを指定された executor に委譲するが、キャストを使用してアクセス可能なほかのメソッドは委譲しないオブジェクトを返します。 |
| ScheduledExecutorService 型のパラメータを持つ java.util.concurrent のメソッド | |
|---|---|
static ScheduledExecutorService |
Executors.unconfigurableScheduledExecutorService(ScheduledExecutorService executor)
定義済みのすべての ScheduledExecutorService メソッドを指定された executor に委譲するが、キャストを使用してアクセス可能なほかのメソッドは委譲しないオブジェクトを返します。 |
|
JavaTM Platform Standard Ed. 6 |
|||||||||
| 前 次 | フレームあり フレームなし | |||||||||
Copyright 2009 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。