with deprecated code, highlight versions are Akka versions (#154)
* with deprecated code, highlight versions are Akka versions * scalafmt issue
This commit is contained in:
parent
8338bfed8b
commit
d0238d8bf7
65 changed files with 308 additions and 307 deletions
|
|
@ -155,7 +155,7 @@ object TestPublisher {
|
|||
* Expect no messages.
|
||||
* NOTE! Timeout value is automatically multiplied by timeFactor.
|
||||
*/
|
||||
@deprecated(message = "Use expectNoMessage instead", since = "2.5.5")
|
||||
@deprecated(message = "Use expectNoMessage instead", since = "Akka 2.5.5")
|
||||
def expectNoMsg(): Self = executeAfterSubscription {
|
||||
probe.expectNoMsg()
|
||||
self
|
||||
|
|
@ -165,7 +165,7 @@ object TestPublisher {
|
|||
* Expect no messages for a given duration.
|
||||
* NOTE! Timeout value is automatically multiplied by timeFactor.
|
||||
*/
|
||||
@deprecated(message = "Use expectNoMessage instead", since = "2.5.5")
|
||||
@deprecated(message = "Use expectNoMessage instead", since = "Akka 2.5.5")
|
||||
def expectNoMsg(max: FiniteDuration): Self = executeAfterSubscription {
|
||||
probe.expectNoMsg(max)
|
||||
self
|
||||
|
|
@ -649,7 +649,7 @@ object TestSubscriber {
|
|||
* Same as `expectNoMsg(remaining)`, but correctly treating the timeFactor.
|
||||
* NOTE! Timeout value is automatically multiplied by timeFactor.
|
||||
*/
|
||||
@deprecated(message = "Use expectNoMessage instead", since = "2.5.5")
|
||||
@deprecated(message = "Use expectNoMessage instead", since = "Akka 2.5.5")
|
||||
def expectNoMsg(): Self = {
|
||||
probe.expectNoMsg()
|
||||
self
|
||||
|
|
@ -661,7 +661,7 @@ object TestSubscriber {
|
|||
* Assert that no message is received for the specified time.
|
||||
* NOTE! Timeout value is automatically multiplied by timeFactor.
|
||||
*/
|
||||
@deprecated(message = "Use expectNoMessage instead", since = "2.5.5")
|
||||
@deprecated(message = "Use expectNoMessage instead", since = "Akka 2.5.5")
|
||||
def expectNoMsg(remaining: FiniteDuration): Self = {
|
||||
probe.expectNoMsg(remaining)
|
||||
self
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue