|
Akka/Scala example source code file (JavaDuration.java)
The JavaDuration.java Akka example source code/** * Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com> */ package akka.util; import org.junit.Test; import scala.concurrent.duration.Duration; public class JavaDuration { @Test public void testCreation() { final Duration fivesec = Duration.create(5, "seconds"); final Duration threemillis = Duration.create("3 millis"); final Duration diff = fivesec.minus(threemillis); assert diff.lt(fivesec); assert Duration.Zero().lteq(Duration.Inf()); assert Duration.Inf().gt(Duration.Zero().neg()); } } Other Akka source code examplesHere is a short list of links related to this Akka JavaDuration.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.