Package | Description |
---|---|
jade.core |
This package contains the microkernel of JADE
system.
|
jade.core.sam |
Modifier and Type | Class and Description |
---|---|
class |
SliceProxy
An implementation of the
Service.Slice interface,
supporting routed dispatching of horizontal commands. |
Modifier and Type | Method and Description |
---|---|
Service.Slice[] |
ServiceFinder.findAllSlices(java.lang.String serviceKey)
Retrieves all the slices of a service currently active on this platform.
|
Service.Slice |
ServiceFinder.findSlice(java.lang.String serviceKey,
java.lang.String sliceKey)
Looks up a specific service slice by name.
|
Service.Slice[] |
Service.getAllSlices()
Retrieve the whole array of slices that compose this service.
|
Service.Slice[] |
BaseService.getAllSlices()
The
getAllSlices() implementation of this class
directly retrieves the current list of slices from the Service
Manager. |
protected Service.Slice |
BaseService.getFreshSlice(java.lang.String name) |
Service.Slice |
Service.getLocalSlice()
Retrieve the locally installed slice of this service.
|
Service.Slice |
BaseService.getLocalSlice()
This should be properly implemented
by the services that have non-empty slices.
|
Service.Slice |
Service.getSlice(java.lang.String name)
Retrieve by name a slice of this service.
|
Service.Slice |
BaseService.getSlice(java.lang.String name)
The
getSlice() implementation of this class works
as follows:
First, the name alias table is used to convert the given
slice name into another name, if any
Then, the new name (which may or may not be different
from the original one) is used to look up an internal table
keeping the service slices
If no slice was found, the
ServiceFinder is asked to provide the slice,
which is then put into the local table. |
Modifier and Type | Method and Description |
---|---|
void |
Node.exportSlice(java.lang.String serviceName,
Service.Slice localSlice) |
static java.lang.String |
BaseService.stringifySlice(Service.Slice s) |
Modifier and Type | Interface and Description |
---|---|
interface |
SAMSlice |
Modifier and Type | Class and Description |
---|---|
class |
SAMProxy |
Modifier and Type | Method and Description |
---|---|
Service.Slice |
SAMService.getLocalSlice() |