MergeOptions
Leave feedback
On this page
Inheritance: java.lang.Object
public class MergeOptions
Provides options for merge operation.
Learn more
| Constructor | Description |
|---|---|
| MergeOptions() | Initializes a new instance of the MergeOptions class. |
| Method | Description |
|---|---|
| isAsync() | Gets the flag of asynchronous performing the operation. |
| setAsync(boolean value) | Sets the flag of asynchronous performing the operation. |
| getCancellation() | Gets the operation cancellation object. |
| setCancellation(Cancellation value) | Sets the operation cancellation object. |
public MergeOptions()
Initializes a new instance of the MergeOptions class.
public final boolean isAsync()
Gets the flag of asynchronous performing the operation. The default value is false .
Returns: boolean - The flag of asynchronous performing the operation.
public final void setAsync(boolean value)
Sets the flag of asynchronous performing the operation. The default value is false .
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | boolean | The flag of asynchronous performing the operation. |
public final Cancellation getCancellation()
Gets the operation cancellation object. The default value is null .
Returns: Cancellation - The operation cancellation object.
public final void setCancellation(Cancellation value)
Sets the operation cancellation object. The default value is null .
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | Cancellation | The operation cancellation object. |
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.