Service QueueUtils

from queue-utils import QueueUtils

Port NameLocationProtocolInterfaces
iplocalQueueUtilsInterface

List of Available Interfaces

QueueUtilsInterface

Operation NameInput TypeOutput TypeFaultsDescription
delete_queuestringbool-Removes an existing queue
new_queuestringbool-Creates a new queue with queue_name as key
peekstringundefined-Retrieves, but does not remove, the head of the queue
pollstringundefined-Removes and returns the head of the queue
pushQueueRequestbool-Pushes an element at the end of an existing queue
sizestringint-Returns the size of an existing queue, null otherwise

Types

QueueRequest:
Type Declaration
void {
  queue_name[1,1]: string // 
  element[1,1]: undefined // 
}