e-operation-pool

e-operation-pool

Types and Values

Description

Functions

e_operation_pool_new ()

EOperationPool *
e_operation_pool_new (guint max_threads,
                      GFunc thread_func,
                      gpointer user_data);

FIXME: Document me.

[skip]

Parameters

max_threads

Maximum number of threads for this pool

 

thread_func

Function to run for a given thread

 

user_data

The user data to pass to thread_func

 

Since: 3.2


e_operation_pool_free ()

void
e_operation_pool_free (EOperationPool *pool);

FIXME: Document me.

Since: 3.2


e_operation_pool_reserve_opid ()

guint32
e_operation_pool_reserve_opid (EOperationPool *pool);

Reserves new operation ID, which is returned. This operation ID may be released by e_operation_pool_release_opid() when the operation is finished.

Parameters

pool

an EOperationPool

 

Returns

a new operation ID

Since: 3.2


e_operation_pool_release_opid ()

void
e_operation_pool_release_opid (EOperationPool *pool,
                               guint32 opid);

Releases opid previously reserved by e_operation_pool_reserve_opid().

Parameters

pool

an EOperationPool

 

opid

an operation ID

 

Since: 3.2


e_operation_pool_push ()

void
e_operation_pool_push (EOperationPool *pool,
                       gpointer opdata);

Pushes an operation to be processed. opdata is passed to the function provided in e_operation_pool_new().

Parameters

pool

an EOperationPool

 

opdata

user data for the operation

 

Since: 3.2

Types and Values

EOperationPool

typedef struct _EOperationPool EOperationPool;

Contains only private data that should be read and manipulated using the functions below.

Since: 3.2