/* * Copyright (c) 2019 TAOS Data, Inc. * * This program is free software: you can use, redistribute, and/or modify * it under the terms of the GNU Affero General Public License, version 3 * or later ("AGPL"), as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ #ifndef TAOS_QUEUE_H #define TAOS_QUEUE_H #ifdef __cplusplus extern "C" { #endif typedef void* taos_queue; typedef void* taos_qset; typedef void* taos_qall; taos_queue taosOpenQueue(); void taosCloseQueue(taos_queue); void *taosAllocateQitem(int size); void taosFreeQitem(void *item); int taosWriteQitem(taos_queue, int type, void *item); int taosReadQitem(taos_queue, int *type, void **pitem); taos_qall taosAllocateQall(); void taosFreeQall(taos_qall); int taosReadAllQitems(taos_queue, taos_qall); int taosGetQitem(taos_qall, int *type, void **pitem); void taosResetQitems(taos_qall); taos_qset taosOpenQset(); void taosCloseQset(); int taosAddIntoQset(taos_qset, taos_queue, void *ahandle); void taosRemoveFromQset(taos_qset, taos_queue); int taosGetQueueNumber(taos_qset); int taosReadQitemFromQset(taos_qset, int *type, void **pitem, void **handle); int taosReadAllQitemsFromQset(taos_qset, taos_qall, void **handle); int taosGetQueueItemsNumber(taos_queue param); int taosGetQsetItemsNumber(taos_qset param); #ifdef __cplusplus } #endif #endif