Uses of Class
tigase.util.common.TimerTask
-
Packages that use TimerTask Package Description tigase.component tigase.monitor tigase.server The main package with top level API for server side components.tigase.server.bosh tigase.server.xmppserver tigase.util.updater -
-
Uses of TimerTask in tigase.component
Subclasses of TimerTask in tigase.component Modifier and Type Class Description classScheduledTaskAbstract class extending TimerTask which allows easy configuration and usage of TimerTask as a bean
Created by andrzej on 09.08.2016. -
Uses of TimerTask in tigase.monitor
Methods in tigase.monitor with parameters of type TimerTask Modifier and Type Method Description voidTimerTaskService. addTimerTask(TimerTask task, long delay)voidTimerTaskService. addTimerTask(TimerTask task, long initialDelay, long period) -
Uses of TimerTask in tigase.server
Methods in tigase.server with parameters of type TimerTask Modifier and Type Method Description voidAbstractMessageReceiver. addTimerTask(TimerTask task, long delay)Method queues and executes timer tasks using ScheduledExecutorService which allows using more than one thread for executing tasks.voidAbstractMessageReceiver. addTimerTask(TimerTask task, long initialDelay, long period)protected voidAbstractMessageReceiver. addTimerTask(TimerTask task, long delay, java.util.concurrent.TimeUnit unit)Method queues and executes timer tasks using ScheduledExecutorService which allows using more than one thread for executing tasks.voidAbstractMessageReceiver. addTimerTaskWithTimeout(TimerTask task, long delay, long timeout)Method queues and executes timer tasks using ScheduledExecutorService which allows using more than one thread for executing tasks.voidAbstractMessageReceiver. addTimerTaskWithTimeout(TimerTask task, long delay, long period, long timeout)Creates and executes a periodic action that becomes enabled first after the given initial delay, and subsequently with the given period; please refer toScheduledExecutorService.scheduleAtFixedRate(java.lang.Runnable, long, long, java.util.concurrent.TimeUnit)javadoc for details. -
Uses of TimerTask in tigase.server.bosh
Subclasses of TimerTask in tigase.server.bosh Modifier and Type Class Description classBoshSendQueueTaskclassBoshTaskDescribe class BoshWaitTimer here.Methods in tigase.server.bosh with parameters of type TimerTask Modifier and Type Method Description booleanBoshSession. task(java.util.Queue<Packet> out_results, TimerTask tt) -
Uses of TimerTask in tigase.server.xmppserver
Methods in tigase.server.xmppserver with parameters of type TimerTask Modifier and Type Method Description voidS2SConnectionHandlerIfc. addTimerTask(TimerTask task, long delay, java.util.concurrent.TimeUnit unit)voidS2SConnectionManager. addTimerTask(TimerTask task, long delay, java.util.concurrent.TimeUnit unit) -
Uses of TimerTask in tigase.util.updater
Subclasses of TimerTask in tigase.util.updater Modifier and Type Class Description classUpdatesCheckerDescribe class UpdatesChecker here.
-