|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Command | |
|---|---|
| com.oracle.coherence.patterns.command | |
| com.oracle.coherence.patterns.command.commands | |
| com.oracle.coherence.patterns.command.internal | |
| Uses of Command in com.oracle.coherence.patterns.command |
|---|
| Subinterfaces of Command in com.oracle.coherence.patterns.command | |
|---|---|
interface |
PriorityCommand<C extends Context>
A PriorityCommand is a specialized Command that will be executed
prior to regular Commands. |
| Methods in com.oracle.coherence.patterns.command with parameters of type Command | ||
|---|---|---|
|
DefaultCommandSubmitter.submitCommand(Identifier contextIdentifier,
Command<C> command)
Asynchronously submits the provided Command for execution
against the Context with the specified Identifier and
returns a Ticket that may be used to cancel the execution of the Command. |
|
|
CommandSubmitter.submitCommand(Identifier contextIdentifier,
Command<C> command)
Asynchronously submits the provided Command for execution
against the Context with the specified Identifier and
returns a Ticket that may be used to cancel the execution of the Command. |
|
|
DefaultCommandSubmitter.submitCommand(Identifier contextIdentifier,
Command<C> command,
boolean acceptCommandIfContextDoesNotExist)
Asynchronously submits the provided Command for execution
against the Context with the specified Identifier and
returns a Ticket that may be used to cancel the execution of the Command. |
|
|
CommandSubmitter.submitCommand(Identifier contextIdentifier,
Command<C> command,
boolean allowSubmissionWhenContextDoesNotExist)
Asynchronously submits the provided Command for execution
against the Context with the specified Identifier and
returns a Ticket that may be used to cancel the execution of the Command. |
|
| Uses of Command in com.oracle.coherence.patterns.command.commands |
|---|
| Classes in com.oracle.coherence.patterns.command.commands that implement Command | |
|---|---|
class |
CommandBatch<C extends Context>
A CommandBatch allows a batch (List) of Commands to be
submitted to a single Context for execution in an all or nothing mode. |
class |
PriorityCommandAdapter<C extends Context>
A PriorityCommandAdapter turn a regular Command into
a PriorityCommand. |
| Constructors in com.oracle.coherence.patterns.command.commands with parameters of type Command | |
|---|---|
PriorityCommandAdapter(Command<C> command)
Standard Constructor. |
|
| Constructor parameters in com.oracle.coherence.patterns.command.commands with type arguments of type Command | |
|---|---|
CommandBatch(List<Command<C>> commands)
Standard Constructor. |
|
| Uses of Command in com.oracle.coherence.patterns.command.internal |
|---|
| Methods in com.oracle.coherence.patterns.command.internal that return Command | |
|---|---|
Command<?> |
CommandExecutionRequest.getCommand()
Returns the Command associated with the CommandExecutionRequest. |
| Constructors in com.oracle.coherence.patterns.command.internal with parameters of type Command | |
|---|---|
CommandExecutionRequest(Identifier contextIdentifier,
Command<?> command)
Standard Constructor. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||