com.vaadin.shared.communication
Enum PushMode

java.lang.Object
  extended by java.lang.Enum<PushMode>
      extended by com.vaadin.shared.communication.PushMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PushMode>

public enum PushMode
extends java.lang.Enum<PushMode>

The mode of bidirectional ("push") communication that is in use.

Since:
7.1
Author:
Vaadin Ltd
See Also:
com.vaadin.server.DeploymentConfiguration#getPushMode()

Enum Constant Summary
AUTOMATIC
          Push is enabled.
DISABLED
          Push is disabled.
MANUAL
          Push is enabled.
 
Method Summary
 boolean isEnabled()
          Checks whether the push mode is using push functionality
static PushMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PushMode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DISABLED

public static final PushMode DISABLED
Push is disabled. Regular AJAX requests are used to communicate between the client and the server. Asynchronous messages from the server are not possible. ui.push() throws IllegalStateException.

This is the default mode unless configured otherwise.


MANUAL

public static final PushMode MANUAL
Push is enabled. A bidirectional channel is established between the client and server and used to communicate state changes and RPC invocations. The client is not automatically updated if the server-side state is asynchronously changed; ui.push() must be explicitly called.


AUTOMATIC

public static final PushMode AUTOMATIC
Push is enabled. Like MANUAL, but asynchronous changes to the server-side state are automatically pushed to the client once the session lock is released.

Method Detail

values

public static PushMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (PushMode c : PushMode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PushMode valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

isEnabled

public boolean isEnabled()
Checks whether the push mode is using push functionality

Returns:
true if this mode requires push functionality; false if no push functionality is used for this mode.


Copyright © 2000-2014 Vaadin Ltd. All Rights Reserved.