public static enum PipeConnectionEvent.EventType extends Enum<PipeConnectionEvent.EventType>
| Enum Constant and Description |
|---|
CONSUMER_CONNECT_PULL
Consumer connects in pull mode
|
CONSUMER_CONNECT_PUSH
Consumer connects in push mode
|
CONSUMER_DISCONNECT
Consumer disconnects
|
PROVIDER_CONNECT_PULL
Provider connects in pull mode
|
PROVIDER_CONNECT_PUSH
Provider connects in push mode
|
PROVIDER_DISCONNECT
Provider disconnects
|
| Modifier and Type | Method and Description |
|---|---|
static PipeConnectionEvent.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PipeConnectionEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PipeConnectionEvent.EventType PROVIDER_CONNECT_PULL
public static final PipeConnectionEvent.EventType PROVIDER_CONNECT_PUSH
public static final PipeConnectionEvent.EventType PROVIDER_DISCONNECT
public static final PipeConnectionEvent.EventType CONSUMER_CONNECT_PULL
public static final PipeConnectionEvent.EventType CONSUMER_CONNECT_PUSH
public static final PipeConnectionEvent.EventType CONSUMER_DISCONNECT
public static PipeConnectionEvent.EventType[] values()
for (PipeConnectionEvent.EventType c : PipeConnectionEvent.EventType.values()) System.out.println(c);
public static PipeConnectionEvent.EventType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2005–2017 Red5. All rights reserved.