Package | Description |
---|---|
jade.core |
This package contains the microkernel of JADE
system.
|
Modifier and Type | Class and Description |
---|---|
class |
GenericCommand
A generic implementation of the
Command interface,
operating at the meta-level to provide a generic transformation of
method invocations. |
Modifier and Type | Method and Description |
---|---|
VerticalCommand |
SliceProxy.serve(HorizontalCommand cmd)
Try to serve an incoming horizontal command, routing it to
a remote slice implementation.
|
VerticalCommand |
Service.Slice.serve(HorizontalCommand cmd)
Serves an incoming horizontal command, performing any
required immediate processing, before turning it into a
vertical command to be processed by the incoming filter
chain.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
Filter.accept(VerticalCommand cmd)
Process a command before it is processed by successive
filters in the filter-chain.
|
void |
Sink.consume(VerticalCommand cmd)
Definitely consume a command object.
|
protected void |
Filter.postProcess(VerticalCommand cmd)
Post-process a command object after it has been processed by the
successive filters in the filter chain.
|
java.lang.Object |
Service.submit(VerticalCommand cmd)
Allows submitting a vertical command for processing.
|
java.lang.Object |
BaseService.submit(VerticalCommand cmd) |