JolieDoc for Port QueueUtils
From file queue_utils.iol
| Port Name | Location | Protocol |
|---|---|---|
| QueueUtils |
List of the available interfaces
Interface QueueUtilsInterface
| Heading | Input type | Output type | Faults |
|---|---|---|---|
| delete_queue | string |
bool |
|
| new_queue | string |
bool |
|
| peek | string |
undefined |
|
| poll | string |
undefined |
|
| push | QueueRequest |
bool |
|
| size | string |
int |
Operation list
size( string )( int )
poll( string )( undefined )
new_queue( string )( bool )
delete_queue( string )( bool )
push( QueueRequest )( bool )
peek( string )( undefined )
Message type list
QueueRequest
type QueueRequest: void {
.queue_name: string
.element: undefined
}