Formatting java codes with sbt-java-formatter.

This commit is contained in:
hepin1989 2019-01-12 04:00:53 +08:00
parent 27500001ea
commit 998c5a9285
401 changed files with 19750 additions and 17450 deletions

View file

@ -27,7 +27,11 @@ public class RecipeSourceFromFunction extends RecipeTest {
@BeforeClass
public static void setup() {
system = ActorSystem.create("RecipeSourceFromFunction", ConfigFactory.parseString("akka.loglevel=DEBUG\nakka.loggers = [akka.testkit.TestEventListener]"));
system =
ActorSystem.create(
"RecipeSourceFromFunction",
ConfigFactory.parseString(
"akka.loglevel=DEBUG\nakka.loggers = [akka.testkit.TestEventListener]"));
mat = ActorMaterializer.create(system);
}
@ -46,16 +50,13 @@ public class RecipeSourceFromFunction extends RecipeTest {
}
{
//#source-from-function
final Source<String, NotUsed> source = Source
.repeat(NotUsed.getInstance())
.map(elem -> builderFunction());
//#source-from-function
// #source-from-function
final Source<String, NotUsed> source =
Source.repeat(NotUsed.getInstance()).map(elem -> builderFunction());
// #source-from-function
final List<String> result = source
.take(2)
.runWith(Sink.seq(), mat)
.toCompletableFuture().get(3, TimeUnit.SECONDS);
final List<String> result =
source.take(2).runWith(Sink.seq(), mat).toCompletableFuture().get(3, TimeUnit.SECONDS);
Assert.assertEquals(2, result.size());
}