Method: ServiceState#initializeState
- Defined in:
- lib/filesystemwatcher/servicestate.rb
#initializeState ⇒ Object
Initialize the state information
15 16 17 18 19 20 21 22 23 |
# File 'lib/filesystemwatcher/servicestate.rb', line 15 def initializeState() @configured = false @startTime = 0 @stopTime = 0 @stateMutex = Mutex.new() @stopWhen = nil setState(NOT_STARTED) end |