-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #276 from mdedetrich/add-stream-capability-for-pekko
Add capability for Pekko Streams
- Loading branch information
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
pekko/src/main/scala/sttp/capabilities/pekko/PekkoStreams.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package sttp.capabilities.pekko | ||
|
||
import org.apache.pekko | ||
import pekko.stream.scaladsl.{Flow, Source} | ||
import pekko.util.ByteString | ||
import sttp.capabilities.Streams | ||
|
||
trait PekkoStreams extends Streams[PekkoStreams] { | ||
override type BinaryStream = Source[ByteString, Any] | ||
override type Pipe[A, B] = Flow[A, B, Any] | ||
} | ||
object PekkoStreams extends PekkoStreams |