Searched defs:task (Results 1 - 6 of 6) sorted by relevance

/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/server/logging/
H A DLogRotationTimerTask.java49 Task task; field in class:LogRotationTimerTask
52 public LogRotationTimerTask(Task task, long timeInMinutes ) { argument
54 this.task = task;
68 task.run();
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/util/
H A DConnectorTimerProxy.java89 * Proxy method to schedule a timer task at fixed rate.
91 * is recreated and task is rescheduled.
92 * @param task
97 public void scheduleAtFixedRate(TimerTask task, long delay, long period) { argument
100 timer.scheduleAtFixedRate(task, delay, period);
103 timer.scheduleAtFixedRate(task, delay, period);
130 * Proxy method to schedule a timer task after a specified delay.
132 * is recreated and task is rescheduled.
133 * @param task
138 public void schedule(TimerTask task, lon argument
157 schedule(TimerTask task, Date time) argument
177 schedule(TimerTask task, long delay, long period) argument
197 schedule(TimerTask task, Date firstTime, long period) argument
217 scheduleAtFixedRate(TimerTask task, Date firstTime, long period) argument
[all...]
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/jws/
H A DJavaWebStartState.java68 * executing the associated task as part of the transition (if the
75 * @param task the work to perform
77 public void transition(final Action action, final Runnable task) { argument
84 if (task != null && ! t.isNOOP) {
85 task.run();
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DEjbContainerUtil.java159 public void addWork(Runnable task); argument
H A DEjbContainerUtilImpl.java469 public void addWork(Runnable task) { argument
470 defaultThreadPoolExecutor.submit(task);
H A DStatefulSessionContainer.java138 // We do not want too many ORB task for passivation
2694 TimerTask task = (TimerTask) scheduledTimerTasks.get(i);
2695 task.cancel();
3225 AsynchronousTask task; field in class:PeriodicTask
3230 this.task = new AsynchronousTask(classLoader, target);
3235 if (!task.isExecuting()) {
3236 ejbContainerUtil.addWork(task);
3244 this.task = null;

Completed in 1150 milliseconds