Package | Description |
---|---|
sk.stuba.fiit.perconik.core.services |
Interfaces and abstract implementations of core services and their
components.
|
sk.stuba.fiit.perconik.core.services.listeners |
Interfaces and reference implementations of core listener service and its
components.
|
sk.stuba.fiit.perconik.core.services.resources |
Interfaces and reference implementations of core resource service and its
components.
|
Modifier and Type | Class and Description |
---|---|
class |
ServiceGroup<S extends Service>
An immutable set of
Service instances user-specified
iteration order. |
Modifier and Type | Method and Description |
---|---|
static <S extends Service> |
ServiceGroup.of()
Returns the empty service group.
|
static <S extends Service> |
ServiceGroup.of(S service)
Returns a service group containing a single service.
|
static <S extends Service> |
ServiceGroup.of(S first,
S second)
Returns a service group containing the given services, in order.
|
static <S extends Service> |
ServiceGroup.of(S first,
S second,
S... rest)
Returns a service group containing the given services, in order.
|
Modifier and Type | Method and Description |
---|---|
abstract Service |
AbstractGenericService.AbstractGenericBuilder.build()
Returns a newly created generic service.
|
Service |
ServiceFactory.create()
Creates a service object.
|
Modifier and Type | Method and Description |
---|---|
ServiceGroup<Service> |
ServiceSnapshot.services()
Gets snapshotted core services.
|
ServiceGroup<Service> |
ServiceSnapshot.servicesInStartOrder()
Gets snapshotted core services in start order.
|
ServiceGroup<Service> |
ServiceSnapshot.servicesInStopOrder()
Gets snapshotted core services in stop order.
|
Modifier and Type | Method and Description |
---|---|
static <S extends Service> |
ServiceGroup.of(S first,
S second,
S... rest)
Returns a service group containing the given services, in order.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ListenerService
An object with an operational state providing access to the underlying
listener provider and manager.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractListenerService
An abstract implementation of
ListenerService . |
Modifier and Type | Interface and Description |
---|---|
interface |
ResourceService
An object with an operational state providing access to the underlying
resource provider and manager.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractResourceService
An abstract implementation of
ResourceService . |