org.asteriskjava.live.QueueEntryState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asterisk-java Show documentation
Show all versions of asterisk-java Show documentation
The free Java library for Asterisk PBX integration.
The newest version!
package org.asteriskjava.live;
/**
* The lifecycle status of a {@link org.asteriskjava.live.AsteriskQueueEntry}.
*
* @author gmi
*/
public enum QueueEntryState {
/**
* The user joined the queue.
*/
JOINED,
/**
* The user left the queue.
*/
LEFT
}