Package org.eclipse.keyple.distributed
Interface RemotePluginServerFactoryBuilder.NodeStep
-
- Enclosing class:
- RemotePluginServerFactoryBuilder
public static interface RemotePluginServerFactoryBuilder.NodeStepStep to configure the node associated with the service.- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RemotePluginServerFactoryBuilder.BuilderStepwithAsyncNode(org.eclipse.keyple.distributed.spi.AsyncEndpointServerSpi endpoint)Configures the service with aAsyncNodeServernode.RemotePluginServerFactoryBuilder.BuilderStepwithSyncNode()Configures the service with aSyncNodeServernode.
-
-
-
Method Detail
-
withSyncNode
RemotePluginServerFactoryBuilder.BuilderStep withSyncNode()
Configures the service with aSyncNodeServernode.- Returns:
- Next configuration step.
- Since:
- 2.0.0
-
withAsyncNode
RemotePluginServerFactoryBuilder.BuilderStep withAsyncNode(org.eclipse.keyple.distributed.spi.AsyncEndpointServerSpi endpoint)
Configures the service with aAsyncNodeServernode.- Parameters:
endpoint- TheAsyncEndpointServerSpinetwork endpoint to use.- Returns:
- Next configuration step.
- Throws:
java.lang.IllegalArgumentException- If the endpoint is null.- Since:
- 2.0.0
-
-