You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scalecube-cluster project hava README with examples:
// Start cluster node Alice as a seed node of the cluster, listen and print all incoming messagesClusteralice = Cluster.joinAwait();
alice.listen().subscribe(msg -> System.out.println("Alice received: " + msg.data()));
// Join cluster node Bob to cluster with Alice, listen and print all incoming messagesClusterbob = Cluster.joinAwait(alice.address());
bob.listen().subscribe(msg -> System.out.println("Bob received: " + msg.data()));
but now, interface Cluster doesn't have static method joinAwait(develop and 2.5.0 tag)
The text was updated successfully, but these errors were encountered:
Scalecube-cluster project hava README with examples:
but now, interface
Cluster
doesn't have static methodjoinAwait
(develop and 2.5.0 tag)The text was updated successfully, but these errors were encountered: