Enum Class PushMode

java.lang.Object
java.lang.Enum<PushMode>
com.vaadin.flow.shared.communication.PushMode
All Implemented Interfaces:
Serializable, Comparable<PushMode>, Constable

public enum PushMode extends Enum<PushMode>
The mode of bidirectional ("push") communication that is in use.
Since:
1.0
Author:
Vaadin Ltd
See Also:
  • Enum Constant Details

    • 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 Details

    • values

      public static PushMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PushMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      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.