|   | SingleOccurrenceActionExecuteWithoutWait Method | 
        
        
            Registers this callback to occur once all blocking call complete.
            This function will return immediately and the callback may or may not be run.
            
            Only one callback will be executed by this class and it will be the first one to call 
            either 
ExecuteWithoutWait(Action) or 
ExecuteAndWait(Action).
            
 GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic void ExecuteWithoutWait(
	Action callback = null
)
Public Sub ExecuteWithoutWait ( 
	Optional callback As Action = Nothing
)
public:
void ExecuteWithoutWait(
	Action^ callback = nullptr
)
member ExecuteWithoutWait : 
        ?callback : Action 
(* Defaults:
        let _callback = defaultArg callback null
*)
-> unit function ExecuteWithoutWait(callback);
Parameters
- callback  Action  (Optional)
- the callback to execute
 See Also
See Also