Java time duration support for javadsl #24646

java.time.Duration support in all jdocs java file, the persistence module and the distributed-data
This commit is contained in:
Guy Youansi 2018-06-26 15:41:30 +02:00 committed by Johan Andrén
parent ced08fcb57
commit a4951e0ce7
30 changed files with 214 additions and 141 deletions

View file

@ -6,7 +6,7 @@ package jdocs.event;
import akka.event.japi.EventBus;
import java.util.concurrent.TimeUnit;
import java.time.Duration;
import jdocs.AbstractJavaTest;
import akka.testkit.javadsl.TestKit;
@ -17,7 +17,6 @@ import akka.actor.ActorSystem;
import akka.actor.ActorRef;
import akka.testkit.AkkaJUnitActorSystemResource;
import akka.util.Subclassification;
import scala.concurrent.duration.FiniteDuration;
//#lookup-bus
import akka.event.japi.LookupEventBus;
@ -319,7 +318,7 @@ public class EventBusDocTest extends AbstractJavaTest {
Notification n2 = new Notification(observer2, 101);
actorBus.publish(n2);
probe2.expectMsgEquals(n2);
probe1.expectNoMsg(FiniteDuration.create(500, TimeUnit.MILLISECONDS));
probe1.expectNoMessage(Duration.ofMillis(500));
//#actor-bus-test
}