Package | Description |
---|---|
org.openide.util |
A set of
utility classes
covering a few general infrastructure points in the Open APIs.
|
Modifier and Type | Method | Description |
---|---|---|
RequestProcessor.Task |
RequestProcessor.create(Runnable run) |
Creates request that can be later started by setting its delay.
|
RequestProcessor.Task |
RequestProcessor.create(Runnable run,
boolean initiallyFinished) |
Creates request that can be later started by setting its delay.
|
static RequestProcessor.Task |
RequestProcessor.createRequest(Runnable run) |
Deprecated.
Sharing of one singlethreaded
RequestProcessor
among different users and posting even blocking requests is inherently
deadlock-prone. |
RequestProcessor.Task |
RequestProcessor.post(Runnable run) |
This methods asks the request processor to start given
runnable immediately.
|
RequestProcessor.Task |
RequestProcessor.post(Runnable run,
int timeToWait) |
This methods asks the request processor to start given
runnable after
timeToWait milliseconds. |
RequestProcessor.Task |
RequestProcessor.post(Runnable run,
int timeToWait,
int priority) |
This methods asks the request processor to start given
runnable after
timeToWait milliseconds. |
static RequestProcessor.Task |
RequestProcessor.postRequest(Runnable run) |
Deprecated.
Sharing of one singlethreaded
RequestProcessor
among different users and posting even blocking requests is inherently
deadlock-prone. |
static RequestProcessor.Task |
RequestProcessor.postRequest(Runnable run,
int timeToWait) |
Deprecated.
Sharing of one singlethreaded
RequestProcessor
among different users and posting even blocking requests is inherently
deadlock-prone. |
static RequestProcessor.Task |
RequestProcessor.postRequest(Runnable run,
int timeToWait,
int priority) |
Deprecated.
Sharing of one singlethreaded
RequestProcessor
among different users and posting even blocking requests is inherently
deadlock-prone. |
Built on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.