Interface CommandFilePoller
-
- All Known Implementing Classes:
AbstractCommandFilePoller
,DefaultCommandFilePoller
public interface CommandFilePoller
The command file poller.Created: 2017. 12. 11.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Daemon
getDaemon()
CommandExecutor
getExecutor()
int
getMaxThreads()
long
getPollingInterval()
boolean
isRequeuable()
void
polling()
void
requeue()
void
setPollingInterval(long pollingInterval)
void
stop()
-
-
-
Method Detail
-
getDaemon
Daemon getDaemon()
-
getExecutor
CommandExecutor getExecutor()
-
requeue
void requeue()
-
polling
void polling()
-
stop
void stop()
-
getPollingInterval
long getPollingInterval()
-
setPollingInterval
void setPollingInterval(long pollingInterval)
-
getMaxThreads
int getMaxThreads()
-
isRequeuable
boolean isRequeuable()
-
-