com.vaadin.flow.internal.
Class ExecutionContext
- java.lang.Object
-
- com.vaadin.flow.internal.ExecutionContext
-
All Implemented Interfaces:
public class ExecutionContext extends Object implements Serializable
Context of a callback execution when
UI.beforeClientResponse(com.vaadin.flow.component.Component, com.vaadin.flow.function.SerializableConsumer)
is invoked.Since:
1.0.
Author:
Vaadin Ltd
See Also:
-
-
Constructor Summary
Constructors Constructor and Description ExecutionContext(UI ui, boolean clientSideInitialized)
Creates a new, immutable context.
-
Method Summary
All Methods Modifier and Type Method and Description UI
getUI()
Gets the UI associated with the execution.
boolean
isClientSideInitialized()
Gets whether the client side is being initialized as part of the server response.
-
-
-
Constructor Detail
-
ExecutionContext
public ExecutionContext(UI ui, boolean clientSideInitialized)
Creates a new, immutable context.
Parameters:
ui
- The UI associated with the executionclientSideInitialized
-true
if the client side is already initialized,false
if it is being initialized as part of the current response
-
-
Method Detail
-
getUI
public UI getUI()
Gets the UI associated with the execution.
Returns:
the UI, not
null
-
isClientSideInitialized
public boolean isClientSideInitialized()
Gets whether the client side is being initialized as part of the server response.
Returns:
true
if the client side is already initialized,false
if it is being initialized as part of the current response
-
-