Callback Manager
This class is a utility for routing callbacks to function calls. In order to bind callbacks to functions, an instance of this class must be created for the SteamClient instance that will be posting callbacks.
Parameters
The SteamClient instance to handle the callbacks of.
Constructors
Initializes a new instance of the CallbackManager class.
Functions
Runs a single queued callback. If no callback is queued, this method will instantly return.
Blocks the current thread to run all queued callbacks. If no callback is queued, the method will block for the given timeout or until a callback becomes available. This method returns once the queue has been emptied.
Blocks the current thread to run a single queued callback. If no callback is queued, the method will block until one becomes available.
Blocks the current thread to run a single queued callback. If no callback is queued, the method will block for the given timeout or until a callback becomes available.