com.smaxe.me.core
Interface Executor

All Known Subinterfaces:
ExecutorService
All Known Implementing Classes:
AsyncWorker, SyncWorker

public interface Executor

Executor - executor.

Author:
Andrei Sochirca

Method Summary
 void execute(java.lang.Runnable task)
          Executes the given task at some time in the future.
 

Method Detail

execute

void execute(java.lang.Runnable task)
Executes the given task at some time in the future. The task may execute in a new thread, in a pooled thread, or in the calling thread, at the discretion of the Executor implementation.

Parameters:
task - task to execute