AWS IoT Device SDK C:
Task Pool
Task pool library
|
Return to main page ↑ |
Function pointers types of the task pool. More...
Typedefs | |
typedef void(* | IotTaskPoolRoutine_t) (IotTaskPool_t pTaskPool, IotTaskPoolJob_t pJob, void *pUserContext) |
Callback type for a user callback. More... | |
Function pointers types of the task pool.
typedef void( * IotTaskPoolRoutine_t) (IotTaskPool_t pTaskPool, IotTaskPoolJob_t pJob, void *pUserContext) |
Callback type for a user callback.
This type identifies the user callback signature to execute a task pool job. This callback will be invoked by the task pool threads with the pUserContext
parameter, as specified by the user when calling IotTaskPool_Schedule.