PipeWire  0.3.67
work-queue.h
Go to the documentation of this file.
1 /* PipeWire */
2 /* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
3 /* SPDX-License-Identifier: MIT */
4 
5 #ifndef PIPEWIRE_WORK_QUEUE_H
6 #define PIPEWIRE_WORK_QUEUE_H
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
20 struct pw_work_queue;
21 
22 #include <pipewire/loop.h>
23 
24 typedef void (*pw_work_func_t) (void *obj, void *data, int res, uint32_t id);
25 
26 struct pw_work_queue *
27 pw_work_queue_new(struct pw_loop *loop);
28 
29 void
31 
32 uint32_t
33 pw_work_queue_add(struct pw_work_queue *queue,
34  void *obj, int res,
35  pw_work_func_t func, void *data);
36 
37 int
38 pw_work_queue_cancel(struct pw_work_queue *queue, void *obj, uint32_t id);
39 
40 int
41 pw_work_queue_complete(struct pw_work_queue *queue, void *obj, uint32_t seq, int res);
42 
47 #ifdef __cplusplus
48 }
49 #endif
50 
51 #endif /* PIPEWIRE_WORK_QUEUE_H */
uint32_t pw_work_queue_add(struct pw_work_queue *queue, void *obj, int res, pw_work_func_t func, void *data)
Add an item to the work queue.
Definition: work-queue.c:143
void(* pw_work_func_t)(void *obj, void *data, int res, uint32_t id)
Definition: work-queue.h:29
int pw_work_queue_cancel(struct pw_work_queue *queue, void *obj, uint32_t id)
Cancel a work item.
Definition: work-queue.c:197
int pw_work_queue_complete(struct pw_work_queue *queue, void *obj, uint32_t seq, int res)
Complete a work item.
Definition: work-queue.c:228
void pw_work_queue_destroy(struct pw_work_queue *queue)
Destroy a work queue.
Definition: work-queue.c:113
struct pw_work_queue * pw_work_queue_new(struct pw_loop *loop)
Create a new Work Queue.
Definition: work-queue.c:79
pipewire/loop.h
Definition: src/pipewire/loop.h:31