Merge pull request #17833 from akka/wip-deprecate-StepWise-∂π

move StepWise into tests and deprecate
This commit is contained in:
Konrad Malawski 2015-06-29 13:38:13 +02:00
commit 33bc502c76
2 changed files with 1 additions and 5 deletions

View file

@ -161,11 +161,6 @@ final case class Terminated(ref: ActorRef[Nothing]) extends Signal
*/
object Failed {
/**
* Failure responses are in some cases communicated by using the companion
* objects of the wrapper behaviors, see the [[StepWise]] behavior for an
* example.
*/
sealed trait Decision
@SerialVersionUID(1L)

View file

@ -35,6 +35,7 @@ import scala.util.control.NonFatal
* test procedures for actor systems, hence also the possibility to expect
* failures (see [[StepWise.Steps#expectFailure]]).
*/
@deprecated("to be replaced by process DSL", "2.4-M2")
object StepWise {
import Behavior._
import ScalaDSL._