-
Framework.Timer
The Timer class defines a Tick event that is posted every time a designated interval of time passes.
-
cern.colt.Timer
A handy stopwatch for benchmarking. Like a real stop watch used on ancient running tracks you can start the watch, stop it, start it again, stop it again, display the elapsed time and reset the watch.
-
ch.mtSystems.gcjStubber.model.timer.Timer
A self adjusting (lag preventing) timer that allows to be notified in requested intervals.
-
co.adhoclabs.ironcushion.Timer
A timer for operations.
@author Michael Parker (michael.g.parker@gmail.com)
-
com.apitrary.api.client.common.Timer
Timer class.
@author Denis Neuling (denisneuling@gmail.com)
-
com.ardor3d.util.Timer
Timer
is a ReadOnlyTimer implementation with nanosecond resolution.
-
com.badlogic.ashley.tests.utils.Timer
A simple Timer class that let's you measure multiple times and are identified via an id.
@author Stefan Bachmann
-
com.clarkware.junitperf.Timer
The Timer
interface defines the common interface implemented by all classes whose instances serve as pluggable timers.
@author Mike Clark
@author Clarkware Consulting, Inc.
-
com.cloudcontrolled.api.client.util.Timer
Timer class.
@author Denis Neuling (denisneuling@gmail.com)
-
com.codahale.metrics.Timer
A timer metric which aggregates timing durations and provides duration statistics, plus throughput statistics via {@link Meter}.
-
com.dmissoh.biologic.time.Timer
-
com.golden.gamedev.object.Timer
ms = 1 sec Timer timer = new Timer(1000); public void update(long elapsedTime) { if (timer.action(elapsedTime)) { // do an action!! this always called every 1 second } } } }
-
com.google.code.http4j.utils.Timer
-
com.google.gwt.user.client.Timer
A simplified, browser-safe timer class. This class serves the same purpose as java.util.Timer, but is simplified because of the single-threaded environment.
To schedule a timer, simply create a subclass of it (overriding {@link #run}) and call {@link #schedule} or {@link #scheduleRepeating}.
NOTE: If you are using a timer to schedule a UI animation, use {@link com.google.gwt.animation.client.AnimationScheduler} instead. Thebrowser can optimize your animation for maximum performance.
Example
{@example com.google.gwt.examples.TimerExample}
-
com.google.javascript.jscomp.parsing.parser.util.Timer
-
com.googlecode.jumpnevolve.graphics.Timer
Dieser Timer hilft dabei Zeitabschnitte zu messen.
Die Genaugkeit hängt von der Rechenleistung des PCs ab, ist aber auf keinen Fall für exakte Berechnungen geeignet.
Ein Timer hat die Zustände laufend und nicht laufend. Um zwischen diesen Zuständen zu wechseln, kann er gestartet oder gestoppt werden. Nach dem erzeugen läuft er noch nicht. Sobald die eingestellte Zeit abgelaufen ist, wird der Timer gestoppt.
@author niklas
-
com.hp.hpl.jena.sparql.util.Timer
-
com.impossibl.postgres.utils.Timer
-
com.intel.hadoop.graphbuilder.util.Timer
A simple timer class that can be used for benchmarking/timing up to microsecond resolution.
@author Haijie Gu
-
com.jme3.system.Timer
Timer
is the base class for a high resolution timer. It is created from getTimer("display system")
@author Mark Powell
@version $Id: Timer.java,v 1.18 2007/03/09 10:19:34 rherlitz Exp $
-
com.lissenberg.blog.util.Timer
A timer or stopwatch to measure duration in several time units.
@author Harro Lissenberg
-
com.redhat.ceylon.compiler.java.util.Timer
-
com.softwarementors.extjs.djn.Timer
-
com.sogou.qadev.service.cynthia.bean.Timer
@description :timer interface
@author :liming
@mail :liming@sogou-inc.com
@date :2014-5-6 下午4:46:17
@version :v1.0
-
com.subhajit.common.jmx.util.Timer
-
com.sun.faban.driver.util.Timer
Timer for all benchmark runs.
-
com.sun.faces.util.Timer
This class is a simple wrapper for timing method calls. The traditional methid is to add two variables, start, and stop, and display the difference of these values. Encapsulates the process.
-
com.vladmihalcea.flexypool.metric.Timer
Timer
defines the basic Timer behavior..
@author Vlad Mihalcea
@version %I%, %E%
@since 1.0
-
com.yammer.metrics.core.Timer
-
commonj.timers.Timer
@version $Rev: 430914 $ $Date: 2006-08-11 16:17:16 -0700 (Fri, 11 Aug 2006) $
-
dclong.util.Timer
-
edu.cmu.sphinx.util.Timer
Keeps track of execution times. This class provides methods that can be used for timing processes. The process to be timed should be bracketed by calls to timer.start() and timer.stop(). Repeated operations can be timed more than once. The timer will report the minimum, maximum, average and last time executed for all start/stop pairs when the timer.dump is called.
Timer instances can be obtained from a global cache implemented in {@code TimerPool}.
@see TimerPool
-
edu.uci.jforestsx.util.Timer
@author Yasser Ganjisaffar
-
elemental.util.Timer
A simplified, browser-safe timer class. This class serves the same purpose as java.util.Timer, but is simplified because of the single-threaded environment. To schedule a timer, simply create a subclass of it (overriding {@link #run}) and call {@link #schedule} or {@link #scheduleRepeating}.
-
engine.util.Timer
-
fcagnin.jgltut.framework.Timer
b.com/integeruser/jgltut for info, updates and license terms.
@author integeruser
-
fr.irit.halterego.rrl_ggp.util.Timer
-
gov.nara.nwts.ftapp.Timer
Helper class to report on the duration of a File Analyzer action.
@author TBrady
-
gov.nysenate.openleg.util.Timer
-
grails.plugin.cache.Timer
Based on grails.plugin.springcache.web.Timer.
@author Rob Fletcher
@author Burt Beckwith
-
io.netty.util.Timer
Schedules {@link TimerTask}s for one-time future execution in a background thread.
@apiviz.landmark
@apiviz.has io.netty.util.TimerTask oneway - - executes
@apiviz.has io.netty.util.Timeout oneway - - creates
-
jade.core.Timer
This class is used by the JADE internal timing system to schedule actions after a given amount of time. It should not be used by application developers.
@author Giovanni Rimassa - Universita' di Parma
@version $Date: 2007-03-05 11:02:22 +0100 (lun, 05 mar 2007) $ $Revision: 5938 $
-
java.util.Timer
A facility for threads to schedule tasks for future execution in a background thread. Tasks may be scheduled for one-time execution, or for repeated execution at regular intervals.
Corresponding to each Timer object is a single background thread that is used to execute all of the timer's tasks, sequentially. Timer tasks should complete quickly. If a timer task takes excessive time to complete, it "hogs" the timer's task execution thread. This can, in turn, delay the execution of subsequent tasks, which may "bunch up" and execute in rapid succession when (and if) the offending task finally completes.
After the last live reference to a Timer object goes away and all outstanding tasks have completed execution, the timer's task execution thread terminates gracefully (and becomes subject to garbage collection). However, this can take arbitrarily long to occur. By default, the task execution thread does not run as a daemon thread, so it is capable of keeping an application from terminating. If a caller wants to terminate a timer's task execution thread rapidly, the caller should invoke the timer's cancel method.
If the timer's task execution thread terminates unexpectedly, for example, because its stop method is invoked, any further attempt to schedule a task on the timer will result in an IllegalStateException, as if the timer's cancel method had been invoked.
This class is thread-safe: multiple threads can share a single Timer object without the need for external synchronization.
This class does not offer real-time guarantees: it schedules tasks using the Object.wait(long) method.
Implementation note: This class scales to large numbers of concurrently scheduled tasks (thousands should present no problem). Internally, it uses a binary heap to represent its task queue, so the cost to schedule a task is O(log n), where n is the number of concurrently scheduled tasks.
Implementation note: All constructors start a timer thread.
@author Josh Bloch
@version 1.19, 01/27/06
@see TimerTask
@see Object#wait(long)
@since 1.3
-
javax.ejb.Timer
@version $Rev: 46019 $ $Date: 2004-09-14 03:56:06 -0600 (Tue, 14 Sep 2004) $
-
javax.management.timer.Timer
The timer service.
@author
Adrian Brock
@version $Revision: 1.10 $
-
javax.swing.Timer
-
junit.extensions.abbot.Timer
Time and performance measurement utilities.
@author twall
-
lejos.util.Timer
Timer object, with some similar functionality to java.Swing.Timer.
@author
Ryan VanderBijl
-
models.outils.Timer
-
mods.railcraft.common.util.misc.Timer
ailcraft.info>
-
net.minecraft.src.Timer
-
net.minecraft.util.Timer
-
net.wigis.graph.dnv.utilities.Timer
A class to record how long time something takes.
@author Brynjar Gretarsson
-
org.agilewiki.jactor2.core.util.Timer
A metrics Timer, that also tracks failures.
@author monster
-
org.apache.hadoop.examples.pi.Util.Timer
-
org.apache.jmeter.timers.Timer
This interface defines those methods that must be implemented by timer plugins.
@author
Stefano Mazzocchi
@version $Revision: 1.3 $ $Date: 1999/02/24 15:32:45 $
-
org.apache.logging.log4j.Timer
-
org.apache.logging.log4j.core.Timer
-
org.apache.logging.log4j.core.util.Timer
-
org.apache.muse.util.Timer
Timer is a wrapper class for the JDK java.util.Timer that makes it easy to reschedule timers using the same java.util.TimerTask. It also provides some extra convenience methods related to scheduling and execution. All real work is delegated to java.util.Timer.
@author Dan Jemiolo (danj)
-
org.apache.openejb.jee.Timer
3.org/2001/XMLSchema}anyType"> <sequence> <element name="description" type="{http://java.sun.com/xml/ns/javaee}descriptionType" maxOccurs="unbounded" minOccurs="0"/> <element name="schedule" type="{http://java.sun.com/xml/ns/javaee}timer-scheduleType"/> <element name="start" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> <element name="end" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> <element name="timeout-method" type="{http://java.sun.com/xml/ns/javaee}named-methodType"/> <element name="persistent" type="{http://java.sun.com/xml/ns/javaee}true-falseType" minOccurs="0"/> <element name="timezone" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/> <element name="info" type="{http://java.sun.com/xml/ns/javaee}string" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
org.apache.samza.metrics.Timer
A timer metric that stores time duration and provides {@link Snapshot} of thedurations.
-
org.apache.servicemix.timers.Timer
-
org.apache.uima.internal.util.Timer
Simple timer class.
-
org.auraframework.impl.context.LoggingContextImpl.Timer
-
org.commoncrawl.async.Timer
-
org.drools.core.marshalling.impl.ProtobufMessages.Timers.Timer
-
org.drools.core.time.impl.Timer
-
org.drools.marshalling.impl.ProtobufMessages.Timers.Timer
-
org.drools.process.core.timer.Timer
-
org.drools.time.impl.Timer
-
org.eatbacon.util.Timer
-
org.glite.ce.commonj.utils.Timer
-
org.graylog2.restclient.lib.metrics.Timer
-
org.gudy.azureus2.core3.util.Timer
-
org.imagearchive.lsm.toolbox.info.scaninfo.Timer
-
org.infoglue.deliver.util.Timer
@author Mattias BogebladThis class is a timer utility to debug performance issues. It allows to start/stop the timer and to report in between what the time is.
-
org.jbehave.core.util.Timer
-
org.jboss.byteman.synchronization.Timer
Class used to capture elapsed time.
-
org.jboss.cdi.tck.Timer
Delays thread execution for specified time or unless stop conditions are satisfied according to actual {@link #resolutionLogic}.
Setting the sleep interval to value less than 15 ms is questionable since some operating systems do not provide such precision. Moreover such values may impact test performance.
In case of no stop conditions are specified, timer logic corresponds to regular {@link Thread#sleep(long)} execution.
-
org.jboss.cdi.tck.util.Timer
Delays thread execution for specified time or unless stop conditions are satisfied according to the actual {@link ResolutionLogic}. This class is not thread-safe.
Setting the sleep interval to the value less than 15 ms is questionable since some operating systems do not provide such precision. Moreover such values may impact test performance.
In case of no stop conditions are specified (not recommended), the timer logic corresponds to the regular {@link Thread#sleep(long)} execution.
-
org.jboss.netty.util.Timer
@author The Netty Project (netty-dev@lists.jboss.org)
@author Trustin Lee (tlee@redhat.com)
@version $Rev: 1130 $, $Date: 2009-04-04 02:37:49 +0900 (Sat, 04 Apr 2009) $
-
org.jbpm.env.session.Timer
@author Tom Baeyens, Pascal Verdage
-
org.jbpm.job.Timer
-
org.jbpm.process.core.timer.Timer
-
org.jbpm.scheduler.exe.Timer
a process timer.
-
org.jenetics.util.Timer
Timer for measure the performance of the GA. The timer uses nano second precision (by using {@link System#nanoTime()}). This timer is not synchronized. It's up to the user to ensure thread safety.
@author
Franz Wilhelmstötter
@since 1.0
@version 2.0 —
$Date$
-
org.jredis.bench.Util.Timer
-
org.jugile.util.Timer
""
@author jukka.rahkonen@iki.fi
-
org.lwjgl.util.Timer
A hires timer. This measures time in seconds as floating point values. All Timers created are updated simultaneously by calling the static method tick(). This ensures that within a single iteration of a game loop that all timers are updated consistently with each other.
@author cix_foo
@version $Revision: 3418 $$Id: Timer.java 3418 2010-09-28 21:11:35Z spasi $
-
org.mindswap.pellet.utils.Timer
Class used to keep track how much time is spent for a specific operation. Timers are primarily used to display info about performance. A timer is started at the beginning of a function and is stopped at the end of that function (special care needed when there are multiple return commands in a function because the status of unstopped timers is undefined). A timer also stores how many times the timer has been started so average time spent in a function can be computed.
When a timer is used in a recursive function it will typically be started multiple times. Timer class will only measure the time spent in the first call. This is done by counting how many times a timer is started and time spent is computed only when the number of stop() calls evens out the start() calls. It is the programmer's responsibility to make sure each start() is stopped by a stop() call.
Each timer may be associated with a timeout limit. This means that time spent between start() and stop() calls should be less than the timeout specified. Timeouts will only be checked when check() function is called. If check() function is not called setting timeouts has no effect. It is up to the programmer to decide when and how many times a timer will be checked.
There may be a dependency between timers. For example, classification, realization and entailment operations all use consistency checks. If something goes wrong inside a consistency check and that operation does not finish in a reasonable time, the timeout on the parent timer may expire. To handle such cases, a timer may be associated with a parent timer so every time a timer is checked for a timeout, its parent timer will also be checked. Normally, we would like to associate many parents with a timer but for efficiency reasons (looping over an array each time is expensive) each timer is allowed to have only one parent.
{@link Timers Timers} class stores a set of timers and provides functions to start, stop andcheck timers.
@see Timers
@author Evren Sirin
-
org.mockito.internal.util.Timer
-
org.ocpsoft.rewrite.util.Timer
-
org.powerbot.game.api.util.Timer
-
org.python.pydev.core.performanceeval.Timer
This class is a helper in performance evaluation
-
org.qagile.support.Timer
-
org.rascalmpl.library.vis.figure.interaction.Timer
-
org.rsbot.script.util.Timer
A Timer utility.
@author Jacmob
-
org.semanticweb.HermiT.monitor.Timer
-
org.snu.ids.ha.util.Timer
@author therocks
-
org.sunflow.system.Timer
-
org.waveprotocol.box.stat.Timer
A timer for call. Stores node in execution tree ant start time.
@author akaplanov@gmail.com (A. Kaplanov)
-
org.zanata.webtrans.client.keys.Timer
Wraps a { {@link com.google.gwt.user.client.Timer} to allow testing in anon-browser environment.
@author David Mason,
damason@redhat.com
-
org.zkoss.zul.Timer
Fires one or more {@link org.zkoss.zk.ui.event.Event} aftera specified delay.
{@link Timer} is a special component that is invisible.
Notice that the timer won't fire any event until it is attached to a page.
@author tomyeh
-
org.zoolu.tools.Timer
A Timer is a simple object that fires an onTimeout() method to its TimerListener when the time expires. A Timer have to be started and can be halted before expired.
-
pt.opensoft.util.Timer
-
quicktime.app.time.Timer
-
rcm.util.Timer
-
reactor.timer.Timer
@author Jon Brisbin
-
restx.common.metrics.api.Timer
-
utils.Timer
-
water.util.Timer
Simple Timer class.