|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ComponentRegistry | |
|---|---|
| com.sun.sgs.impl.kernel | Provides an implementation of the RedDwarf Server kernel. |
| com.sun.sgs.impl.profile | Provides an implementation for some interfaces in
com.sun.sgs.profile. |
| com.sun.sgs.impl.profile.listener | Provides implementations for ProfileListener. |
| com.sun.sgs.impl.protocol.simple | Provides an implementation of the protocol layer APIs using the
SimpleSgsProtocol. |
| com.sun.sgs.impl.service.channel | Provides an implementation of ChannelManager. |
| com.sun.sgs.impl.service.data | Provides an implementation of DataService. |
| com.sun.sgs.impl.service.data.store | Provides facilities for storing objects used by DataServiceImpl. |
| com.sun.sgs.impl.service.data.store.db.bdb | Provides an implementation of the interfaces in the com.sun.sgs.service.store.db package based on Berkeley
DB. |
| com.sun.sgs.impl.service.data.store.db.je | Provides an implementation of the interfaces in the com.sun.sgs.service.store.db package based on Berkeley DB Java
Edition. |
| com.sun.sgs.impl.service.data.store.net | Provides an implementation of DataStore that supports clients
communicating to a shared data store server over the network. |
| com.sun.sgs.impl.service.nodemap | Provides an implementation of
NodeMappingService. |
| com.sun.sgs.impl.service.nodemap.affinity | Provides classes, interfaces, and utilities used to find affinity groups with the label propagation algorithm (LPA). |
| com.sun.sgs.impl.service.nodemap.affinity.dgb | Provides classes for a multi-node distributed graph builder implementation of the label propagation algorithm described in "Near linear time algorithm to detect community structures in large-scale networks" by Raghavan, Albert and Kumara (2007). |
| com.sun.sgs.impl.service.nodemap.affinity.dlpa.graph | Provides classes used to create the graphs for the fully distributed label propagation algorithm implementation. |
| com.sun.sgs.impl.service.nodemap.affinity.graph | Provides classes used to build graphs used by the label propagation algorithm (LPA). |
| com.sun.sgs.impl.service.nodemap.affinity.single | Provides classes for a single node implementation of the label propagation algorithm described in "Near linear time algorithm to detect community structures in large-scale networks" by Raghavan, Albert and Kumara (2007). |
| com.sun.sgs.impl.service.session | Provides an implementation of ClientSessionService. |
| com.sun.sgs.impl.service.task | Provides an implementation of TaskService. |
| com.sun.sgs.impl.service.watchdog | Provides an implementation of WatchdogService. |
| com.sun.sgs.impl.util | Provides miscellaneous utility classes and methods. |
| Uses of ComponentRegistry in com.sun.sgs.impl.kernel |
|---|
| Classes in com.sun.sgs.impl.kernel that implement ComponentRegistry | |
|---|---|
(package private) class |
ComponentRegistryImpl
This is a simple implementation of ComponentRegistry used
to startup and configure the system and individual applications. |
| Fields in com.sun.sgs.impl.kernel declared as ComponentRegistry | |
|---|---|
protected ComponentRegistry |
KernelContext.managerComponents
|
protected ComponentRegistry |
KernelContext.serviceComponents
|
| Constructors in com.sun.sgs.impl.kernel with parameters of type ComponentRegistry | |
|---|---|
KernelContext(String applicationName,
ComponentRegistry serviceComponents,
ComponentRegistry managerComponents)
Creates an instance KernelContext with the given name
and components. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.profile |
|---|
| Constructors in com.sun.sgs.impl.profile with parameters of type ComponentRegistry | |
|---|---|
ProfileCollectorImpl(ProfileCollector.ProfileLevel level,
Properties appProperties,
ComponentRegistry systemRegistry)
Creates an instance of ProfileCollectorImpl. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.profile.listener |
|---|
| Constructors in com.sun.sgs.impl.profile.listener with parameters of type ComponentRegistry | |
|---|---|
AccessedObjectsListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of AccessedObjectsListener. |
|
AggregateProfileListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of AggregateProfileListener. |
|
AggregateTaskListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of AggregateTaskListener. |
|
OperationLoggingProfileOpListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of OperationLoggingProfileOpListener. |
|
ProfileSampleListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of ProfileSampleListener. |
|
ProfileSummaryListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of ProfileSummaryListener. |
|
RuntimeHistogramListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of RuntimeHistogramListener. |
|
SampleJMXListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of SampleJMXListener. |
|
SnapshotParticipantListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of SnapshotParticipantListener. |
|
SnapshotProfileListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of SnapshotProfileListener. |
|
SnapshotTaskListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of RuntimeHistogramListener. |
|
TaskRuntimeGraphOutputListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Creates an instance of TaskRuntimeGraphOutputListener. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.protocol.simple |
|---|
| Constructors in com.sun.sgs.impl.protocol.simple with parameters of type ComponentRegistry | |
|---|---|
SimpleSgsProtocolAcceptor(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Constructs an instance with the specified properties,
systemRegistry, and txnProxy. |
|
SimpleSgsProtocolAcceptor(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy,
LoggerWrapper logger)
Constructs an instance with the specified properties,
systemRegistry, txnProxy, and logger. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.channel |
|---|
| Constructors in com.sun.sgs.impl.service.channel with parameters of type ComponentRegistry | |
|---|---|
ChannelServiceImpl(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Constructs an instance of this class with the specified properties, systemRegistry, and txnProxy. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.data |
|---|
| Constructors in com.sun.sgs.impl.service.data with parameters of type ComponentRegistry | |
|---|---|
DataServiceImpl(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Creates an instance of this class configured with the specified properties and services. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.data.store |
|---|
| Constructors in com.sun.sgs.impl.service.data.store with parameters of type ComponentRegistry | |
|---|---|
AbstractDataStore(ComponentRegistry systemRegistry,
LoggerWrapper logger,
LoggerWrapper abortLogger)
Creates an instance of this class. |
|
DataStoreImpl(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Creates an instance of this class. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.data.store.db.bdb |
|---|
| Constructors in com.sun.sgs.impl.service.data.store.db.bdb with parameters of type ComponentRegistry | |
|---|---|
BdbEnvironment(String directory,
Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Creates an instance of this class. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.data.store.db.je |
|---|
| Constructors in com.sun.sgs.impl.service.data.store.db.je with parameters of type ComponentRegistry | |
|---|---|
JeEnvironment(String directory,
Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Creates an instance of this class. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.data.store.net |
|---|
| Constructors in com.sun.sgs.impl.service.data.store.net with parameters of type ComponentRegistry | |
|---|---|
DataStoreClient(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Creates an instance of this class configured with the specified properties and access coordinator. |
|
DataStoreServerImpl(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Creates an instance of this class configured with the specified properties. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.nodemap |
|---|
| Constructors in com.sun.sgs.impl.service.nodemap with parameters of type ComponentRegistry | |
|---|---|
NodeMappingServerImpl(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Creates a new instance of NodeMappingServerImpl, called from the local NodeMappingService. |
|
NodeMappingServiceImpl(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Constructs an instance of this class with the specified properties. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.nodemap.affinity |
|---|
| Constructors in com.sun.sgs.impl.service.nodemap.affinity with parameters of type ComponentRegistry | |
|---|---|
LPADriver(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Constructs an instance of this class with the specified properties. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.nodemap.affinity.dgb |
|---|
| Constructors in com.sun.sgs.impl.service.nodemap.affinity.dgb with parameters of type ComponentRegistry | |
|---|---|
DistGraphBuilder(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Creates the client side of a distributed graph builder. |
|
DistGraphBuilderServerImpl(ComponentRegistry systemRegistry,
TransactionProxy txnProxy,
Properties properties,
long nodeId)
Creates a distributed graph builder server. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.nodemap.affinity.dlpa.graph |
|---|
| Constructors in com.sun.sgs.impl.service.nodemap.affinity.dlpa.graph with parameters of type ComponentRegistry | |
|---|---|
BipartiteGraphBuilder(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Constructs a new bipartite graph builder. |
|
WeightedGraphBuilder(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Creates a weighted graph builder. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.nodemap.affinity.graph |
|---|
| Constructors in com.sun.sgs.impl.service.nodemap.affinity.graph with parameters of type ComponentRegistry | |
|---|---|
GraphListener(Properties properties,
Identity owner,
ComponentRegistry registry)
Constructs a new listener for affinity graph data. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.nodemap.affinity.single |
|---|
| Constructors in com.sun.sgs.impl.service.nodemap.affinity.single with parameters of type ComponentRegistry | |
|---|---|
SingleGraphBuilder(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Creates a weighted graph builder and its JMX MBean. |
|
SingleGraphBuilder(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy,
boolean needStats)
Creates a weighted graph builder. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.session |
|---|
| Constructors in com.sun.sgs.impl.service.session with parameters of type ComponentRegistry | |
|---|---|
ClientSessionServiceImpl(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Constructs an instance of this class with the specified properties. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.task |
|---|
| Constructors in com.sun.sgs.impl.service.task with parameters of type ComponentRegistry | |
|---|---|
FixedTimeContinuePolicy(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy)
Construct a FixedTimeContinuePolicy instance. |
|
TaskServiceImpl(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy transactionProxy)
Creates an instance of TaskServiceImpl. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.service.watchdog |
|---|
| Constructors in com.sun.sgs.impl.service.watchdog with parameters of type ComponentRegistry | |
|---|---|
WatchdogServerImpl(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy,
String host,
WatchdogClient client,
boolean fullStack)
Constructs an instance of this class with the specified properties. |
|
WatchdogServiceImpl(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy,
KernelShutdownController ctrl)
Constructs an instance of this class with the specified properties. |
|
| Uses of ComponentRegistry in com.sun.sgs.impl.util |
|---|
| Constructors in com.sun.sgs.impl.util with parameters of type ComponentRegistry | |
|---|---|
AbstractService(Properties properties,
ComponentRegistry systemRegistry,
TransactionProxy txnProxy,
LoggerWrapper logger)
Constructs an instance with the specified properties, systemRegistry, txnProxy, and logger. |
|
|
RedDwarf, Version 0.10.1 2010-03-14 10:56:12 |
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||