public class ConnectStateEvent
extends javafx.event.Event
Modifier and Type | Field and Description |
---|---|
static javafx.event.EventType<ConnectStateEvent> |
ANY
Common supertype for all worker state event types.
|
static javafx.event.EventType<ConnectStateEvent> |
CONNECT_STATE_CANCELLED
This event occurs when the state of a GluonObservable implementation has
transitioned to the CANCELLED state.
|
static javafx.event.EventType<ConnectStateEvent> |
CONNECT_STATE_FAILED
This event occurs when the state of a GluonObservable implementation has
transitioned to the FAILED state.
|
static javafx.event.EventType<ConnectStateEvent> |
CONNECT_STATE_READY
This event occurs when the state of a GluonObservable implementation has
transitioned to the READY state.
|
static javafx.event.EventType<ConnectStateEvent> |
CONNECT_STATE_REMOVED
This event occurs when the state of a GluonObservable implementation has
transitioned to the REMOVED state.
|
static javafx.event.EventType<ConnectStateEvent> |
CONNECT_STATE_RUNNING
This event occurs when the state of a GluonObservable implementation has
transitioned to the RUNNING state.
|
static javafx.event.EventType<ConnectStateEvent> |
CONNECT_STATE_SUCCEEDED
This event occurs when the state of a GluonObservable implementation has
transitioned to the SUCCEEDED state.
|
Constructor and Description |
---|
ConnectStateEvent(GluonObservable gluonObservable,
javafx.event.EventType<? extends ConnectStateEvent> eventType)
Create a new ConnectStateEvent.
|
Modifier and Type | Method and Description |
---|---|
GluonObservable |
getSource() |
public static final javafx.event.EventType<ConnectStateEvent> ANY
public static final javafx.event.EventType<ConnectStateEvent> CONNECT_STATE_READY
public static final javafx.event.EventType<ConnectStateEvent> CONNECT_STATE_RUNNING
public static final javafx.event.EventType<ConnectStateEvent> CONNECT_STATE_FAILED
public static final javafx.event.EventType<ConnectStateEvent> CONNECT_STATE_SUCCEEDED
public static final javafx.event.EventType<ConnectStateEvent> CONNECT_STATE_CANCELLED
public static final javafx.event.EventType<ConnectStateEvent> CONNECT_STATE_REMOVED
public ConnectStateEvent(GluonObservable gluonObservable, javafx.event.EventType<? extends ConnectStateEvent> eventType)
gluonObservable
- The GluonObservable which is firing the event. The
GluonObservable really should be an EventTarget, otherwise the
EventTarget for the event will be null.eventType
- The type of event. This should not be null.public GluonObservable getSource()
getSource
in class java.util.EventObject