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.UseBusySpinIdleStrategyinstead.
-
-
Constructor Summary
Constructors Constructor Description NoOpIdleStrategy()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voididle()Deprecated.Idle action (sleep, wait, etc).voididle(int workCount)Deprecated.voidreset()Deprecated.Reset the internal state (after doing some work).
-
-
-
Method Detail
-
idle
public void idle(int workCount)
Deprecated.- Specified by:
idlein 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:IdleStrategyIdle action (sleep, wait, etc).- Specified by:
idlein interfaceIdleStrategy
-
reset
public void reset()
Deprecated.Description copied from interface:IdleStrategyReset the internal state (after doing some work).- Specified by:
resetin interfaceIdleStrategy
-
-