This room is dedicated to discussions between Akka committers for coordinating the development process—for general questions and discussions around the usage of Akka please head over to akka/akka. For more info see: http://bit.ly/akka-gitter
System.out.println("hello akka!");
as the first line inside the main
function.sbt:akka-docs> testOnly jdocs.stream.operators.sourceorflow.MapError
[info] Strategy 'discard' was applied to 2 files (Run the task at debug level to see details)
[info] Assembly up to date: /Users/nitika/akka/akka-protobuf-v3/target/scala-2.12/akka-protobuf-v3-assembly-2.6.10+109-acf1e4c7+20201225-2307.jar
[info] ScalaTest
[info] Run completed in 13 milliseconds.
[info] Total number of tests run: 0
[info] Suites: completed 0, aborted 0
[info] Tests: succeeded 0, failed 0, canceled 0, ignored 0, pending 0
[info] No tests were executed.
[info] Passed: Total 0, Failed 0, Errors 0, Passed 0
[info] No tests to run for Test / testOnly
[success] Total time: 8 s, completed 25 Dec, 2020 11:13:47 PM
package jdocs.stream.operators.sourceorflow;
import akka.actor.ActorSystem;
public class MapError {
public static void main(String[] args) {
// #map-error
final ActorSystem system = ActorSystem.create("mapError-operator-example");
System.out.println("hello akka!");
}
}