CallLimiterCall Method (Action) | 
 
            Calls the specified to call after 500ms milliseconds, unless a call is already in progress, in which case the call is ignored. It doesn't matter if
            this method was called previously with a different toCall value. 
            
 
    Namespace: 
   SD.Tools.Algorithmia.GeneralDataStructures
    Assembly:
   SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.4.0.0 (1.4.19.0711)
Syntaxpublic bool Call(
	Action toCall
)
Public Function Call ( 
	toCall As Action
) As Boolean
Parameters
- toCall
 - Type: SystemAction
The func to call. 
Return Value
Type: 
Boolean
RemarksCalls to toCall will be made on a threadpool thread
See Also