public class UIWebsocket extends UIComponentBase implements ClientBehaviorHolder
The <f:websocket>
tag opens an one-way (server to client) websocket based push connection in client
side which can be reached from server side via PushContext
interface injected in any CDI/container managed
artifact via @
Push
annotation.
By default, the rendererType
property must be set to "javax.faces.Websocket
".
This value can be changed by calling the setRendererType()
method.
For detailed usage instructions, see @
Push
javadoc.
Push
Modifier and Type | Field and Description |
---|---|
static String |
COMPONENT_FAMILY
The standard component family for this component.
|
static String |
COMPONENT_TYPE
The standard component type for this component.
|
ATTRS_WITH_DECLARED_DEFAULT_VALUES, BEANINFO_KEY, bindings, COMPOSITE_COMPONENT_TYPE_KEY, COMPOSITE_FACET_NAME, CURRENT_COMPONENT, CURRENT_COMPOSITE_COMPONENT, FACETS_KEY, HONOR_CURRENT_COMPONENT_ATTRIBUTES_PARAM_NAME, VIEW_LOCATION_KEY
Constructor and Description |
---|
UIWebsocket()
Create a new
UIWebsocket instance with default property values. |
Modifier and Type | Method and Description |
---|---|
String |
getChannel()
Returns the name of the websocket channel.
|
Collection<String> |
getEventNames()
Returns a non-null, empty, unmodifiable
Collection which returns true on any
Collection#contains() invocation, indicating that all client behavior event names are acceptable. |
String |
getFamily()
Returns
COMPONENT_FAMILY . |
String |
getOnclose()
Returns the JavaScript event handler function that is invoked when the websocket is closed.
|
String |
getOnmessage()
Returns the JavaScript event handler function that is invoked when a push message is received from the server.
|
String |
getOnopen()
Returns the JavaScript event handler function that is invoked when the websocket is opened.
|
String |
getScope()
Returns the scope of the websocket channel.
|
Serializable |
getUser()
Returns the user identifier of the websocket channel.
|
boolean |
isConnected()
Returns whether to (auto)connect the websocket or not.
|
void |
setChannel(String channel)
Sets the name of the websocket channel.
|
void |
setConnected(boolean connected)
Sets whether to (auto)connect the websocket or not.
|
void |
setOnclose(String onclose)
Sets the JavaScript event handler function that is invoked when the websocket is closed.
|
void |
setOnmessage(String onmessage)
Sets the JavaScript event handler function that is invoked when a push message is received from the server.
|
void |
setOnopen(String onopen)
Sets the JavaScript event handler function that is invoked when the websocket is opened.
|
void |
setScope(String scope)
Sets the scope of the websocket channel.
|
void |
setUser(Serializable user)
Sets the user identifier of the websocket channel, so that user-targeted push messages can be sent.
|
void |
setValueExpression(String name,
ValueExpression binding)
Set the
ValueExpression used to calculate the value for the specified attribute or property name, if any. |
addClientBehavior, addFacesListener, broadcast, clearInitialState, decode, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributes, getChildCount, getChildren, getClientBehaviors, getClientId, getDefaultEventName, getFacesContext, getFacesListeners, getFacet, getFacetCount, getFacets, getFacetsAndChildren, getId, getListenersForEventClass, getParent, getPassThroughAttributes, getRenderer, getRendererType, getRendersChildren, getValueBinding, invokeOnComponent, isRendered, isTransient, markInitialState, processDecodes, processRestoreState, processSaveState, processUpdates, processValidators, queueEvent, removeFacesListener, restoreAttachedState, restoreState, saveAttachedState, saveState, setId, setParent, setRendered, setRendererType, setTransient, setValueBinding, subscribeToEvent, unsubscribeFromEvent
encodeAll, getClientId, getCompositeComponentParent, getContainerClientId, getCurrentComponent, getCurrentCompositeComponent, getNamingContainer, getPassThroughAttributes, getResourceBundleMap, getStateHelper, getStateHelper, getTransientStateHelper, getTransientStateHelper, getValueExpression, initialStateMarked, isCompositeComponent, isInView, isVisitable, popComponentFromEL, processEvent, pushComponentToEL, restoreTransientState, saveTransientState, setInView, visitTree
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
addClientBehavior, getClientBehaviors, getDefaultEventName
public static final String COMPONENT_TYPE
The standard component type for this component.
public static final String COMPONENT_FAMILY
The standard component family for this component.
public UIWebsocket()
Create a new UIWebsocket
instance with default property values.
IllegalStateException
- When Websocket endpoint is not enabled.public String getFamily()
Returns COMPONENT_FAMILY
.
getFamily
in class UIComponent
public void setValueExpression(String name, ValueExpression binding)
Set the ValueExpression
used to calculate the value for the specified attribute or property name, if any.
If a ValueExpression
is set for the channel
or scope
property, regardless of
the value, throw an illegal argument exception. If a ValueExpression
is set for the user
property, and the non-null value is not an instance of Serializable
, throw an illegal argument
exception.
setValueExpression
in class UIComponent
name
- Name of the attribute or property for which to set a
ValueExpression
binding
- The ValueExpression
to set, or null
to remove any
currently set ValueExpression
IllegalArgumentException
- If name
is one of id
, parent
,
channel
or scope
, or it name
is user
and the non-null value
is not an instance of Serializable
.NullPointerException
- If name
is null
.public Collection<String> getEventNames()
Returns a non-null, empty, unmodifiable Collection
which returns true
on any
Collection#contains()
invocation, indicating that all client behavior event names are acceptable.
getEventNames
in interface ClientBehaviorHolder
getEventNames
in class UIComponentBase
public String getChannel()
public void setChannel(String channel)
channel
- The name of the websocket channel.IllegalArgumentException
- When the value does not represent a valid channel name.public String getScope()
public void setScope(String scope)
application
, session
and
view
, case insensitive. When the value is application
, then all channels with the same
name throughout the application will receive the same push message. When the value is session
, then
only the channels with the same name in the current user session will receive the same push message. When the
value is view
, then only the channel in the current view will receive the push message. The default
scope is application
. When the user
attribute is specified, then the default scope is
session
.scope
- The scope of the websocket channel.public Serializable getUser()
public void setUser(Serializable user)
Serializable
and preferably have low memory footprint.
Suggestion: use #{request.remoteUser}
or #{someLoggedInUser.id}
.user
- The user identifier of the websocket channel.public String getOnopen()
public void setOnopen(String onopen)
onopen
- The JavaScript event handler function that is invoked when the websocket is opened.public String getOnmessage()
public void setOnmessage(String onmessage)
onmessage
- The JavaScript event handler function that is invoked when a push message is received from the server.public String getOnclose()
public void setOnclose(String onclose)
CloseEvent
itself. Note that this will also be invoked on errors and that you can inspect the close
reason code if an error occurred and which one (i.e. when the code is not 1000). See also
RFC 6455 section 7.4.1 and CloseReason.CloseCodes
API
for an elaborate list of all close codes.onclose
- The JavaScript event handler function that is invoked when the websocket is closed.public boolean isConnected()
public void setConnected(boolean connected)
true
. It's interpreted as a
JavaScript instruction whether to open or close the websocket push connection. Note that this attribute is
re-evaluated on every ajax request. You can also explicitly set it to false
and then manually
control in JavaScript by OmniFaces.Push.open("channelName")
and
OmniFaces.Push.close("channelName")
.connected
- Whether to (auto)connect the websocket or not.Copyright © 2019 Eclipse Foundation.
Use is subject to license terms.