1
+ package com .atomix .example ;
2
+
3
+ import java .io .File ;
4
+
5
+ import java .util .Arrays ;
6
+ import java .util .List ;
7
+
8
+ import io .atomix .AtomixReplica ;
9
+ import io .atomix .catalyst .transport .Address ;
10
+ import io .atomix .catalyst .transport .netty .NettyTransport ;
11
+ import io .atomix .collections .DistributedMap ;
12
+ import io .atomix .concurrent .DistributedLock ;
13
+ import io .atomix .copycat .server .storage .Storage ;
14
+ import io .atomix .copycat .server .storage .StorageLevel ;
15
+
16
+ public class OtherNodes {
17
+
18
+ public static void main (String [] args ) throws InterruptedException {
19
+ // TODO Auto-generated method stub
20
+
21
+ List <Address > cluster = Arrays .asList (new Address ("localhost" , 8700 ), new Address ("localhost" , 8701 ), new Address ("localhost" , 8702 ));
22
+
23
+ Storage storage = Storage .builder ()
24
+ .withDirectory (new File ("log" ))
25
+ .withStorageLevel (StorageLevel .DISK )
26
+ .build ();
27
+
28
+ AtomixReplica replica2 = AtomixReplica .builder (new Address ("localhost" , 8701 ))
29
+ .withStorage (storage )
30
+ .withTransport (new NettyTransport ())
31
+ .build ();
32
+
33
+ WorkerThread WT1 = new WorkerThread (replica2 , cluster );
34
+ WT1 .run ();
35
+
36
+ AtomixReplica replica3 = AtomixReplica .builder (new Address ("localhost" , 8702 ))
37
+ .withStorage (storage )
38
+ .withTransport (new NettyTransport ())
39
+ .build ();
40
+
41
+ WorkerThread WT2 = new WorkerThread (replica3 , cluster );
42
+ WT2 .run ();
43
+
44
+ Thread .sleep (6000 );
45
+
46
+ DistributedLock lock = replica2 .getLock ("my-lock" )
47
+ .join ();
48
+ lock .lock ()
49
+ .thenRun (() -> System .out .println ("Acquired a lock" ));
50
+
51
+ DistributedMap <Object , Object > map = replica2 .getMap ("map" )
52
+ .join ();
53
+
54
+ // Put a value in the map and call the completion callback on response
55
+ map .put ("bar" , "Hello world!" )
56
+ .thenRun (() -> System .out .println ("Value is set in Distributed Map" ));
57
+ }
58
+
59
+ private static class WorkerThread extends Thread {
60
+ AtomixReplica replica ;
61
+ List <Address > cluster ;
62
+
63
+ public WorkerThread (AtomixReplica replica , List <Address > cluster ) {
64
+ this .replica = replica ;
65
+ this .cluster = cluster ;
66
+ }
67
+
68
+ public void run () {
69
+ replica .join (cluster )
70
+ .join ();
71
+ }
72
+ }
73
+ }
0 commit comments