-
https://github.com/akka/akka/pull/21550
This `CoupledTerminationFlow.fromSinkAndSource` flow puts completion "through" to the other side.
It's what people often ask for in websocket apps.
We s…
ktoso updated
7 years ago
-
The `reference.conf` says this:
```
alpakka.google.cloud.pubsub.grpc {
host = "pubsub.googleapis.com"
port = 443
# Set to "none" to disable TLS
# TLS and certificates should be confi…
-
Would Alpakka be the right place to put monitoring stages to augment streams with metrics?
Something simple that would read like
```
val meter : Flow[T, T, NotUsed] = Monitoring.meter("meter-name…
-
In 0.13.7+,
``` scala
val (a, b) = (0, 1)
```
results in the error.
```
Pattern matching in val statements is not supported
```
This worked in 0.13.6. (Probably related to #1661.)
Anyway, it woul…
-
Consider the following code
```scala
val (f1, f2) = Source(1 to 100)
.alsoToMat(Sink.head)(Keep.right)
.toMat(Sink.last)(Keep.both)
.run()
for {
head
-
The future returned by `binding.terminate()` resolves when the termination is complete.
When using `binding.terminate()` with coordinated shutdown, this means the result of `terminate` will trigger…
-
Currently, we can `render` all `Formattable`s to `String`s. This is not enough.
E.g: To support streaming end to end, we might want to render output as `Source[ByteString,_]`.
Also, input doesn'…
-
Try monitoring dss server with kamon(https://kamon.io) and zipkin(https://zipkin.io)
-
Using sbt-dependency-graph fails on Lagom projects:
```
[error] (a-impl/compile:dependencyGraph) java.util.NoSuchElementException: key not found: ModuleId(org.scala-sbt.temp,temp-resolve-db792fd3b…
-
Hi, would it be possible to support client / server side application level keep alive, i.e. like https://github.com/grpc/grpc-java/issues/3470 ? Thanks!