* Sink.seq (Scala DSL) now returns immutable.Seq rather than Seq * Sink.seq will not silently truncate when incoming elements is > Int.MAX_VALUE * minor doc fixes * replacing various grouped(n) / Sink.head with limit(n) / Sink.seq in various tests * fix inconsistent indentation in RequestParserSpec
56 lines
1.5 KiB
Java
56 lines
1.5 KiB
Java
/**
|
|
* Copyright (C) 2015-2016 Typesafe <http://typesafe.com/>
|
|
*/
|
|
package docs.stream.javadsl.cookbook;
|
|
|
|
import akka.NotUsed;
|
|
import akka.actor.ActorSystem;
|
|
import akka.stream.ActorMaterializer;
|
|
import akka.stream.Materializer;
|
|
import akka.stream.io.Framing;
|
|
import akka.stream.javadsl.Sink;
|
|
import akka.stream.javadsl.Source;
|
|
import akka.testkit.JavaTestKit;
|
|
import akka.util.ByteString;
|
|
import org.junit.AfterClass;
|
|
import org.junit.BeforeClass;
|
|
import org.junit.Test;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
public class RecipeParseLines extends RecipeTest {
|
|
|
|
static ActorSystem system;
|
|
|
|
@BeforeClass
|
|
public static void setup() {
|
|
system = ActorSystem.create("RecipeLoggingElements");
|
|
}
|
|
|
|
@AfterClass
|
|
public static void tearDown() {
|
|
JavaTestKit.shutdownActorSystem(system);
|
|
system = null;
|
|
}
|
|
|
|
final Materializer mat = ActorMaterializer.create(system);
|
|
|
|
@Test
|
|
public void parseLines() throws Exception {
|
|
final Source<ByteString, NotUsed> rawData = Source.from(Arrays.asList(
|
|
ByteString.fromString("Hello World"),
|
|
ByteString.fromString("\r"),
|
|
ByteString.fromString("!\r"),
|
|
ByteString.fromString("\nHello Akka!\r\nHello Streams!"),
|
|
ByteString.fromString("\r\n\r\n")));
|
|
|
|
//#parse-lines
|
|
final Source<String, NotUsed> lines = rawData
|
|
.via(Framing.delimiter(ByteString.fromString("\r\n"), 100, true))
|
|
.map(b -> b.utf8String());
|
|
//#parse-lines
|
|
lines.limit(10).runWith(Sink.seq(), mat).toCompletableFuture().get(1, TimeUnit.SECONDS);
|
|
}
|
|
|
|
}
|