Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(For Validation) =str #21926 add note on (non)guarantees of materializer SPI (#21932) #21935

Merged
merged 1 commit into from Dec 2, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions akka-stream/src/main/scala/akka/stream/Materializer.scala
Expand Up @@ -9,6 +9,18 @@ import scala.concurrent.ExecutionContextExecutor

import scala.concurrent.duration.FiniteDuration

/**
* Materializer SPI (Service Provider Interface)
*
* Binary compatibility is NOT guaranteed on materializer internals.
*
* Custom materializer implementations should be aware that the materializer SPI
* is not yet final and may change in patch releases of Akka. Please note that this
* does not impact end-users of Akka streams, only implementors of custom materializers,
* with whom the Akka team co-ordinates such changes.
*
* Once the SPI is final this notice will be removed.
*/
abstract class Materializer {

/**
Expand Down