Package com.arangodb.model
Class EdgeReplaceOptions
- java.lang.Object
-
- com.arangodb.model.EdgeReplaceOptions
-
public final class EdgeReplaceOptions extends Object
- Author:
- Mark Vollmary
- See Also:
- API Documentation
-
-
Constructor Summary
Constructors Constructor Description EdgeReplaceOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getIfMatch()
String
getStreamTransactionId()
Boolean
getWaitForSync()
EdgeReplaceOptions
ifMatch(String ifMatch)
EdgeReplaceOptions
streamTransactionId(String streamTransactionId)
EdgeReplaceOptions
waitForSync(Boolean waitForSync)
-
-
-
Method Detail
-
getWaitForSync
public Boolean getWaitForSync()
-
waitForSync
public EdgeReplaceOptions waitForSync(Boolean waitForSync)
- Parameters:
waitForSync
- Wait until document has been synced to disk.- Returns:
- options
-
getIfMatch
public String getIfMatch()
-
ifMatch
public EdgeReplaceOptions ifMatch(String ifMatch)
- Parameters:
ifMatch
- replace a document based on target revision- Returns:
- options
-
getStreamTransactionId
public String getStreamTransactionId()
-
streamTransactionId
public EdgeReplaceOptions streamTransactionId(String streamTransactionId)
- Parameters:
streamTransactionId
- If set, the operation will be executed within the transaction.- Returns:
- options
- Since:
- ArangoDB 3.5.1
-
-