Package | Description |
---|---|
sk.stuba.fiit.perconik.core.services |
Interfaces and abstract implementations of core services and their
components.
|
Modifier and Type | Method and Description |
---|---|
<U extends S> |
ServiceGroup.narrow(java.lang.Class<U> type) |
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.
|
ServiceGroup<S> |
ServiceGroup.reverse() |
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.
|