rename akka-docs dir to docs (#62)
This commit is contained in:
parent
13dce0ec69
commit
708da8caec
1029 changed files with 2033 additions and 2039 deletions
161
docs/src/test/java/jdocs/stream/FlowStreamRefsDocTest.java
Normal file
161
docs/src/test/java/jdocs/stream/FlowStreamRefsDocTest.java
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
/*
|
||||
* Copyright (C) 2015-2022 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
package jdocs.stream;
|
||||
|
||||
import org.apache.pekko.NotUsed;
|
||||
import org.apache.pekko.actor.AbstractActor;
|
||||
import org.apache.pekko.actor.ActorRef;
|
||||
import org.apache.pekko.actor.ActorSystem;
|
||||
import org.apache.pekko.actor.Props;
|
||||
import org.apache.pekko.stream.*;
|
||||
import org.apache.pekko.stream.javadsl.*;
|
||||
import org.apache.pekko.testkit.javadsl.TestKit;
|
||||
import jdocs.AbstractJavaTest;
|
||||
import org.junit.Test;
|
||||
import scala.concurrent.duration.FiniteDuration;
|
||||
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
public class FlowStreamRefsDocTest extends AbstractJavaTest {
|
||||
|
||||
static ActorSystem system = null;
|
||||
static Materializer mat = null;
|
||||
|
||||
@Test
|
||||
public void compileOnlySpec() {
|
||||
// do nothing
|
||||
}
|
||||
|
||||
// #offer-source
|
||||
static class RequestLogs {
|
||||
public final long streamId;
|
||||
|
||||
public RequestLogs(long streamId) {
|
||||
this.streamId = streamId;
|
||||
}
|
||||
}
|
||||
|
||||
static class LogsOffer {
|
||||
final SourceRef<String> sourceRef;
|
||||
|
||||
public LogsOffer(SourceRef<String> sourceRef) {
|
||||
this.sourceRef = sourceRef;
|
||||
}
|
||||
}
|
||||
|
||||
static class DataSource extends AbstractActor {
|
||||
@Override
|
||||
public Receive createReceive() {
|
||||
return receiveBuilder().match(RequestLogs.class, this::handleRequestLogs).build();
|
||||
}
|
||||
|
||||
private void handleRequestLogs(RequestLogs requestLogs) {
|
||||
Source<String, NotUsed> logs = streamLogs(requestLogs.streamId);
|
||||
SourceRef<String> logsRef = logs.runWith(StreamRefs.sourceRef(), mat);
|
||||
|
||||
getSender().tell(new LogsOffer(logsRef), getSelf());
|
||||
}
|
||||
|
||||
private Source<String, NotUsed> streamLogs(long streamId) {
|
||||
return Source.repeat("[INFO] some interesting logs here (for id: " + streamId + ")");
|
||||
}
|
||||
}
|
||||
// #offer-source
|
||||
|
||||
public void offerSource() {
|
||||
new TestKit(system) {
|
||||
{
|
||||
|
||||
// #offer-source-use
|
||||
ActorRef sourceActor = system.actorOf(Props.create(DataSource.class), "dataSource");
|
||||
|
||||
sourceActor.tell(new RequestLogs(1337), getTestActor());
|
||||
LogsOffer offer = expectMsgClass(LogsOffer.class);
|
||||
|
||||
offer.sourceRef.getSource().runWith(Sink.foreach(log -> System.out.println(log)), mat);
|
||||
|
||||
// #offer-source-use
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
// #offer-sink
|
||||
static class PrepareUpload {
|
||||
final String id;
|
||||
|
||||
public PrepareUpload(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
}
|
||||
|
||||
static class MeasurementsSinkReady {
|
||||
final String id;
|
||||
final SinkRef<String> sinkRef;
|
||||
|
||||
public MeasurementsSinkReady(String id, SinkRef<String> ref) {
|
||||
this.id = id;
|
||||
this.sinkRef = ref;
|
||||
}
|
||||
}
|
||||
|
||||
static class DataReceiver extends AbstractActor {
|
||||
@Override
|
||||
public Receive createReceive() {
|
||||
return receiveBuilder()
|
||||
.match(
|
||||
PrepareUpload.class,
|
||||
prepare -> {
|
||||
Sink<String, NotUsed> sink = logsSinkFor(prepare.id);
|
||||
SinkRef<String> sinkRef = StreamRefs.<String>sinkRef().to(sink).run(mat);
|
||||
|
||||
getSender().tell(new MeasurementsSinkReady(prepare.id, sinkRef), getSelf());
|
||||
})
|
||||
.build();
|
||||
}
|
||||
|
||||
private Sink<String, NotUsed> logsSinkFor(String id) {
|
||||
return Sink.<String>ignore().mapMaterializedValue(done -> NotUsed.getInstance());
|
||||
}
|
||||
}
|
||||
// #offer-sink
|
||||
|
||||
public void offerSink() {
|
||||
new TestKit(system) {
|
||||
{
|
||||
|
||||
// #offer-sink-use
|
||||
ActorRef receiver = system.actorOf(Props.create(DataReceiver.class), "dataReceiver");
|
||||
|
||||
receiver.tell(new PrepareUpload("system-42-tmp"), getTestActor());
|
||||
MeasurementsSinkReady ready = expectMsgClass(MeasurementsSinkReady.class);
|
||||
|
||||
Source.repeat("hello").runWith(ready.sinkRef.getSink(), mat);
|
||||
// #offer-sink-use
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
public void configureTimeouts() {
|
||||
new TestKit(system) {
|
||||
{
|
||||
|
||||
// #attr-sub-timeout
|
||||
FiniteDuration timeout = FiniteDuration.create(5, TimeUnit.SECONDS);
|
||||
Attributes timeoutAttributes = StreamRefAttributes.subscriptionTimeout(timeout);
|
||||
|
||||
// configuring Sink.sourceRef (notice that we apply the attributes to the Sink!):
|
||||
Source.repeat("hello")
|
||||
.runWith(StreamRefs.<String>sourceRef().addAttributes(timeoutAttributes), mat);
|
||||
|
||||
// configuring SinkRef.source:
|
||||
StreamRefs.<String>sinkRef()
|
||||
.addAttributes(timeoutAttributes)
|
||||
.runWith(Sink.<String>ignore(), mat); // not very interesting sink, just an example
|
||||
|
||||
// #attr-sub-timeout
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue