2023-01-08 17:13:31 +08:00
|
|
|
/*
|
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
|
* license agreements; and to You under the Apache License, version 2.0:
|
|
|
|
|
*
|
|
|
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* This file is part of the Apache Pekko project, derived from Akka.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-03-13 23:45:55 +09:00
|
|
|
/*
|
2022-02-04 12:36:44 +01:00
|
|
|
* Copyright (C) 2018-2022 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;
|
|
|
|
|
|
2022-11-12 10:21:24 +01:00
|
|
|
import org.apache.pekko.actor.ActorSystem;
|
2019-08-23 18:19:27 +02:00
|
|
|
|
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
|