├── .gitignore ├── COPYING ├── LICENSE ├── README.md ├── activator.properties ├── pom.xml ├── project └── build.properties ├── src ├── main │ ├── java │ │ └── worker │ │ │ ├── Frontend.java │ │ │ ├── Main.java │ │ │ ├── Master.java │ │ │ ├── MasterWorkerProtocol.java │ │ │ ├── WorkDomainEvent.java │ │ │ ├── WorkExecutor.java │ │ │ ├── WorkProducer.java │ │ │ ├── WorkResultConsumer.java │ │ │ ├── WorkState.java │ │ │ └── Worker.java │ └── resources │ │ ├── application.conf │ │ └── worker.conf └── test │ ├── java │ └── worker │ │ └── DistributedWorkerTest.java │ └── resources │ └── test.conf └── tutorial ├── img1.png ├── img10.png ├── img11.png ├── img2.png ├── img5.png ├── img6.png ├── img7.png ├── img8.png ├── img9.png └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/README.md -------------------------------------------------------------------------------- /activator.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/activator.properties -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/pom.xml -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.8 2 | -------------------------------------------------------------------------------- /src/main/java/worker/Frontend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/main/java/worker/Frontend.java -------------------------------------------------------------------------------- /src/main/java/worker/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/main/java/worker/Main.java -------------------------------------------------------------------------------- /src/main/java/worker/Master.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/main/java/worker/Master.java -------------------------------------------------------------------------------- /src/main/java/worker/MasterWorkerProtocol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/main/java/worker/MasterWorkerProtocol.java -------------------------------------------------------------------------------- /src/main/java/worker/WorkDomainEvent.java: -------------------------------------------------------------------------------- 1 | package worker; 2 | 3 | public interface WorkDomainEvent { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/main/java/worker/WorkExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/main/java/worker/WorkExecutor.java -------------------------------------------------------------------------------- /src/main/java/worker/WorkProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/main/java/worker/WorkProducer.java -------------------------------------------------------------------------------- /src/main/java/worker/WorkResultConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/main/java/worker/WorkResultConsumer.java -------------------------------------------------------------------------------- /src/main/java/worker/WorkState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/main/java/worker/WorkState.java -------------------------------------------------------------------------------- /src/main/java/worker/Worker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/main/java/worker/Worker.java -------------------------------------------------------------------------------- /src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/main/resources/application.conf -------------------------------------------------------------------------------- /src/main/resources/worker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/main/resources/worker.conf -------------------------------------------------------------------------------- /src/test/java/worker/DistributedWorkerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/test/java/worker/DistributedWorkerTest.java -------------------------------------------------------------------------------- /src/test/resources/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/src/test/resources/test.conf -------------------------------------------------------------------------------- /tutorial/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/tutorial/img1.png -------------------------------------------------------------------------------- /tutorial/img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/tutorial/img10.png -------------------------------------------------------------------------------- /tutorial/img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/tutorial/img11.png -------------------------------------------------------------------------------- /tutorial/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/tutorial/img2.png -------------------------------------------------------------------------------- /tutorial/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/tutorial/img5.png -------------------------------------------------------------------------------- /tutorial/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/tutorial/img6.png -------------------------------------------------------------------------------- /tutorial/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/tutorial/img7.png -------------------------------------------------------------------------------- /tutorial/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/tutorial/img8.png -------------------------------------------------------------------------------- /tutorial/img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/tutorial/img9.png -------------------------------------------------------------------------------- /tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typesafehub/activator-akka-distributed-workers-java/HEAD/tutorial/index.html --------------------------------------------------------------------------------