Class AbstractFileCommander
- java.lang.Object
-
- com.aspectran.daemon.command.polling.AbstractFileCommander
-
- All Implemented Interfaces:
FileCommander
- Direct Known Subclasses:
DefaultFileCommander
public abstract class AbstractFileCommander extends java.lang.Object implements FileCommander
Created: 2017. 12. 11.
-
-
Constructor Summary
Constructors Constructor Description AbstractFileCommander(Daemon daemon, DaemonPollingConfig pollingConfig)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CommandExecutor
getCommandExecutor()
Daemon
getDaemon()
long
getPollingInterval()
boolean
isRequeuable()
void
setPollingInterval(long pollingInterval)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.aspectran.daemon.command.polling.FileCommander
polling, requeue
-
-
-
-
Constructor Detail
-
AbstractFileCommander
public AbstractFileCommander(Daemon daemon, DaemonPollingConfig pollingConfig)
-
-
Method Detail
-
getDaemon
public Daemon getDaemon()
- Specified by:
getDaemon
in interfaceFileCommander
-
getCommandExecutor
public CommandExecutor getCommandExecutor()
- Specified by:
getCommandExecutor
in interfaceFileCommander
-
getPollingInterval
public long getPollingInterval()
- Specified by:
getPollingInterval
in interfaceFileCommander
-
setPollingInterval
public void setPollingInterval(long pollingInterval)
- Specified by:
setPollingInterval
in interfaceFileCommander
-
isRequeuable
public boolean isRequeuable()
- Specified by:
isRequeuable
in interfaceFileCommander
-
-