We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d531c43 commit 1287d25Copy full SHA for 1287d25
1 file changed
localization/de/actor-model/README.md
@@ -63,7 +63,9 @@ ohne dabei anderen Mitarbeitern in die Quere zu kommen.
63
```java
64
public abstract class Actor implements Runnable {
65
66
- @Setter @Getter private String actorId;
+ @Setter
67
+ @Getter
68
+ private String actorId;
69
private final BlockingQueue<Message> mailbox = new LinkedBlockingQueue<>();
70
private volatile boolean active = true;
71
@@ -124,7 +126,7 @@ public class ActorSystem {
124
126
125
127
public class App {
128
public static void main(String[] args) {
- ActorSystem system = new ActorSystem();
129
+ ActorSystem system = new ActorSystem();
130
Actor srijan = new ExampleActor(system);
131
Actor ansh = new ExampleActor2(system);
132
0 commit comments