dashboardjavacloudcoapiotiot-analyticsiot-platformiot-solutionskafkalwm2mmicroservicesmiddlewaremqttnettyplatformsnmpthingsboardvisualizationwebsocketswidgets
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
301 B
8 lines
301 B
// SPDX-FileCopyrightText: Copyright The Thingsboard Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
export interface IQueue {
|
|
name: string;
|
|
init(): Promise<void>;
|
|
send(responseTopic: string, msgKey: string, rawResponse: Buffer, headers: any): Promise<any>;
|
|
destroy(): Promise<void>;
|
|
}
|
|
|