Skip to content

queue

Holds the "queue" datatype

Associated DataTypes

queue

A queue is a first-in, first-out data structure. Items Pushed are inserted at the rear, or 'tail' of the queue. Items removed, or Popped are taken from the 'front' of the queue.

Members

int Count

Number of items inserted onto the queue.

bool Push[ѕtring]

True if the item was pushed successfully.

string Pop

False is returned if IsEmpty is true.

bool IsEmpty

True if Count = 0, False otherwise.

string Peek

False is returned if IsEmpty is true.

This TLO is added by MQ2Collections.