add usage examples for conflate / conflate with seed (#25498)

* +doc conflate and conflateWithSeed docs examples

* fixes

* show throttle in the example so its more obvious that "slow upstream" etc
This commit is contained in:
Konrad `ktoso` Malawski 2018-09-20 16:22:11 +09:00 committed by GitHub
parent 4206e16954
commit bf3c11464e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 112 additions and 18 deletions

View file

@ -8,20 +8,58 @@ import akka.stream.javadsl.Flow;
//#log
import akka.stream.Attributes;
import akka.stream.javadsl.Source;
//#log
import java.time.Duration;
import java.util.Arrays;
class SourceOrFlow {
void logExample() {
Flow.of(String.class)
//#log
.log("myStream")
.addAttributes(Attributes.createLogLevels(
Attributes.logLevelOff(), // onElement
Attributes.logLevelError(), // onFailure
Attributes.logLevelInfo())) // onFinish
//#log
.log("myStream")
.addAttributes(Attributes.createLogLevels(
Attributes.logLevelOff(), // onElement
Attributes.logLevelError(), // onFailure
Attributes.logLevelInfo())) // onFinish
//#log
;
}
void conflateExample() {
//#conflate
Source.cycle(() -> Arrays.asList(1, 10, 100).iterator())
.throttle(10, Duration.ofSeconds(1)) // fast upstream
.conflate((Integer acc, Integer el) -> acc + el)
.throttle(1, Duration.ofSeconds(1)); // slow downstream
//#conflate
}
static //#conflateWithSeed-type
class Summed {
private final Integer el;
public Summed(Integer el) {
this.el = el;
}
public Summed sum(Summed other) {
return new Summed(this.el + other.el);
}
}
//#conflateWithSeed-type
void conflateWithSeedExample() {
//#conflateWithSeed
Source.cycle(() -> Arrays.asList(1, 10, 100).iterator())
.throttle(10, Duration.ofSeconds(1)) // fast upstream
.conflateWithSeed(Summed::new, (Summed acc, Integer el) -> acc.sum(new Summed(el)))
.throttle(1, Duration.ofSeconds(1)); // slow downstream
//#conflateWithSeed
}
}