2018-03-13 23:45:55 +09:00
|
|
|
/*
|
2020-01-02 07:24:59 -05:00
|
|
|
* Copyright (C) 2018-2020 Lightbend Inc. <https://www.lightbend.com>
|
2018-03-13 23:45:55 +09:00
|
|
|
*/
|
|
|
|
|
|
2017-05-11 11:59:28 +03:00
|
|
|
package jdocs.stream;
|
|
|
|
|
|
2019-08-23 18:19:27 +02:00
|
|
|
import akka.actor.ActorSystem;
|
|
|
|
|
|
2019-01-12 04:00:53 +08:00
|
|
|
// #main-app
|
2017-04-06 11:17:10 +02:00
|
|
|
public class Main {
|
|
|
|
|
public static void main(String[] argv) {
|
2019-08-23 18:19:27 +02:00
|
|
|
final ActorSystem system = ActorSystem.create("QuickStart");
|
2017-04-06 11:17:10 +02:00
|
|
|
// Code here
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-01-12 04:00:53 +08:00
|
|
|
// #main-app
|