  | IClientExecutionServiceScheduleWithFixedDelay Method  | 
  
    Namespace: 
   Hazelcast.Client.Spi
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntaxvoid ScheduleWithFixedDelay(
	Action command,
	long initialDelay,
	long period,
	TimeUnit unit,
	CancellationToken token
)
Sub ScheduleWithFixedDelay ( 
	command As Action,
	initialDelay As Long,
	period As Long,
	unit As TimeUnit,
	token As CancellationToken
)
void ScheduleWithFixedDelay(
	Action^ command, 
	long long initialDelay, 
	long long period, 
	TimeUnit unit, 
	CancellationToken token
)
abstract ScheduleWithFixedDelay : 
        command : Action * 
        initialDelay : int64 * 
        period : int64 * 
        unit : TimeUnit * 
        token : CancellationToken -> unit 
Parameters
- command
 - Type: SystemAction
 - initialDelay
 - Type: SystemInt64
 - period
 - Type: SystemInt64
 - unit
 - Type: Hazelcast.CoreTimeUnit
 - token
 - Type: System.ThreadingCancellationToken
 
See Also