public enum PropertyBinding.UpdateStrategy
Defines the thread on which target updates should run.
| Enum constant | Description |
|---|---|
ASYNC |
Always updates asynchronously. |
DEFER |
Defers updates until the event queue processes them. |
MIXED |
Chooses a strategy dynamically based on the current execution context. |
OUTSIDE |
Updates synchronously off the event-dispatch thread. |
SAME |
Updates on the calling thread. |
SYNC |
Always updates synchronously on the event-dispatch thread. |
| Type Params | Return Type | Name and description |
|---|---|---|
|
public static UpdateStrategy |
of(String str)Resolves an update strategy name. |
Always updates asynchronously.
Defers updates until the event queue processes them.
Chooses a strategy dynamically based on the current execution context.
Updates synchronously off the event-dispatch thread.
Updates on the calling thread.
Always updates synchronously on the event-dispatch thread.
Resolves an update strategy name.
str - the strategy namenull when the name is not recognizedCopyright © 2003-2026 The Apache Software Foundation. All rights reserved.