Package jadex.bridge.service.component
Interface IInternalServiceMonitoringFeature
-
- All Known Implementing Classes:
RequiredServicesComponentFeature
public interface IInternalServiceMonitoringFeature
Interface for monitoring provided and required services
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ISubscriptionIntermediateFuture<ServiceCallEvent>
getServiceEvents()
Listen to service call events (call, result and commands).boolean
isMonitoring()
Check if there is someone monitoring.void
postServiceEvent(ServiceCallEvent event)
Post a service call event.
-
-
-
Method Detail
-
getServiceEvents
ISubscriptionIntermediateFuture<ServiceCallEvent> getServiceEvents()
Listen to service call events (call, result and commands).
-
postServiceEvent
void postServiceEvent(ServiceCallEvent event)
Post a service call event.
-
isMonitoring
boolean isMonitoring()
Check if there is someone monitoring. To Avoid posting when nobody is listening.
-
-