@@ -14,7 +14,7 @@ First of all, add config's dependency:
1414 <dependency >
1515 <groupId >io.appulse.encon</groupId >
1616 <artifactId >encon-config</artifactId >
17- <version >1.4 .0</version >
17+ <version >1.5 .0</version >
1818 </dependency >
1919 ...
2020</dependencies >
@@ -23,7 +23,7 @@ First of all, add config's dependency:
2323** Gradle** :
2424
2525``` groovy
26- compile 'io.appulse.encon.java:encon-config:1.4 .0'
26+ compile 'io.appulse.encon.java:encon-config:1.5 .0'
2727```
2828
2929### File based configuration
@@ -57,8 +57,6 @@ defaults:
5757 distribution-flags :
5858 - MAP_TAG
5959 - BIG_CREATION
60- mailbox :
61- blocking : false
6260 server :
6361 boss-threads : 2
6462 worker-threads : 4
8785 - BIG_CREATION
8886 mailboxes :
8987 - name : net_kernel
90- blocking : false
9188 - name : another
92- blocking : true
9389 - name : another_one
9490 server :
9591 port : 8971
@@ -101,7 +97,6 @@ nodes:
10197 cookie : popa
10298 mailboxes :
10399 - name : net_kernel
104- blocking : false
105100
106101```
107102
@@ -123,9 +118,6 @@ Config config = Config.builder()
123118 MAP_TAG ,
124119 BIG_CREATION
125120 )))
126- .mailbox(MailboxConfig . builder()
127- .blocking(false )
128- .build())
129121 .server(ServerConfig . builder()
130122 .bossThreads(2 )
131123 .workerThreads(4 )
@@ -150,11 +142,9 @@ Config config = Config.builder()
150142 .distributionFlag(BIG_CREATION )
151143 .mailbox(MailboxConfig . builder()
152144 .name(" net_kernel" )
153- .blocking(false )
154145 .build())
155146 .mailbox(MailboxConfig . builder()
156147 .name(" another" )
157- .blocking(true )
158148 .build())
159149 .mailbox(MailboxConfig . builder()
160150 .name(" another" )
@@ -171,7 +161,6 @@ Config config = Config.builder()
171161 .cookie(" popa" )
172162 .mailbox(MailboxConfig . builder()
173163 .name(" net_kernel" )
174- .blocking(false )
175164 .build())
176165 .build()
177166 )
0 commit comments