Package deltix.util.io.idlestrat
Class NoOpIdleStrategy
- java.lang.Object
-
- deltix.util.io.idlestrat.NoOpIdleStrategy
-
- All Implemented Interfaces:
IdleStrategy
public class NoOpIdleStrategy extends java.lang.Object implements IdleStrategy
Deprecated.UseBusySpinIdleStrategy
instead.
-
-
Constructor Summary
Constructors Constructor Description NoOpIdleStrategy()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
idle()
Deprecated.Idle action (sleep, wait, etc).void
idle(int workCount)
Deprecated.void
reset()
Deprecated.Reset the internal state (after doing some work).
-
-
-
Method Detail
-
idle
public void idle(int workCount)
Deprecated.- Specified by:
idle
in interfaceIdleStrategy
- Parameters:
workCount
- amount of work done in the last cycle. Value "0" means that no work as done and some data form an external source expected.
-
idle
public void idle()
Deprecated.Description copied from interface:IdleStrategy
Idle action (sleep, wait, etc).- Specified by:
idle
in interfaceIdleStrategy
-
reset
public void reset()
Deprecated.Description copied from interface:IdleStrategy
Reset the internal state (after doing some work).- Specified by:
reset
in interfaceIdleStrategy
-
-