25 lines
597 B
Java
25 lines
597 B
Java
/*
|
|
* 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.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2018-2022 Lightbend Inc. <https://www.lightbend.com>
|
|
*/
|
|
|
|
package jdocs.stream;
|
|
|
|
import org.apache.pekko.actor.ActorSystem;
|
|
|
|
// #main-app
|
|
public class Main {
|
|
public static void main(String[] argv) {
|
|
final ActorSystem system = ActorSystem.create("QuickStart");
|
|
// Code here
|
|
}
|
|
}
|
|
// #main-app
|