Task Pool API Reference
Task pool library
Function pointers types

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...
 

Detailed Description

Function pointers types of the task pool.

Typedef Documentation

◆ IotTaskPoolRoutine_t

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.