Package io.atomix.cluster
Interface BootstrapService
- All Known Implementing Classes:
AtomixCluster
public interface BootstrapService
Cluster bootstrap service.
This service provides the low level APIs that can be used to bootstrap a cluster.
-
Method Summary
Modifier and Type Method Description BroadcastServicegetBroadcastService()Returns the cluster broadcast serviceMessagingServicegetMessagingService()Returns the cluster messaging service.UnicastServicegetUnicastService()Returns the cluster unicast service.
-
Method Details
-
getMessagingService
MessagingService getMessagingService()Returns the cluster messaging service.- Returns:
- the cluster messaging service
-
getUnicastService
UnicastService getUnicastService()Returns the cluster unicast service.- Returns:
- the cluster unicast service
-
getBroadcastService
BroadcastService getBroadcastService()Returns the cluster broadcast service- Returns:
- the cluster broadcast service
-