Uses of Interface
org.eclipse.keyple.distributed.RemotePluginClientFactoryBuilder.SyncNodeReaderStep
-
Uses of RemotePluginClientFactoryBuilder.SyncNodeReaderStep in org.eclipse.keyple.distributed
Methods in org.eclipse.keyple.distributed that return RemotePluginClientFactoryBuilder.SyncNodeReaderStepModifier and TypeMethodDescriptionRemotePluginClientFactoryBuilder.SyncNodePluginStep.withoutPluginObservation()
Do not activate the plugin observation.RemotePluginClientFactoryBuilder.ServerPushPluginEventStrategyStep.withPluginLongPollingStrategy
(int requestTimeoutMillis) Long polling strategy : The client requests continuously the server to check for events.
This mode is blocking server side and more costly in resource for the server because if there is no event, then the server keeps the hand during X milliseconds in case an event would occur before responds to the client.
This mode has the advantage of being more reactive.RemotePluginClientFactoryBuilder.ServerPushPluginEventStrategyStep.withPluginPollingStrategy
(int requestFrequencyMillis) Polling strategy : The client requests the server every X milliseconds to check if there are any events.
This mode is non-blocking server side and not very demanding on the server's resources because if there are no events, then the server immediately responds to the client.