Interface ClusterConfiguration
-
public interface ClusterConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanclustered()Enables or disables the clustering.Stringhost()The host name.DurationpingInterval()The ping interval.DurationpingReplyInterval()The ping reply interval.OptionalIntport()The port.Optional<String>publicHost()The public host name.OptionalIntpublicPort()The public port.
-
-
-
Method Detail
-
host
@WithDefault("localhost") String host()The host name.
-
port
OptionalInt port()
The port.
-
publicPort
OptionalInt publicPort()
The public port.
-
clustered
@WithDefault("false") boolean clustered()Enables or disables the clustering.
-
pingInterval
@WithDefault("20") Duration pingInterval()The ping interval.
-
pingReplyInterval
@WithDefault("20") Duration pingReplyInterval()The ping reply interval.
-
-