Interface SessionOwnershipWriteResult
-
public interface SessionOwnershipWriteResultProvides the result of any attempt to write data into the session ownership store.
- Since:
- Rhino 2.6.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExceptiongetFailureCause()Get the associated cause exception if the write result isWriteResult.FAILURE_EXCEPTION.StringgetKey()Get the key that this write result applies to.WriteResultgetResult()Get the result of the write operation.
-
-
-
Method Detail
-
getKey
String getKey()
Get the key that this write result applies to.
- Returns:
- the key.
- Since:
- Rhino 2.6.1
-
getResult
WriteResult getResult()
Get the result of the write operation.
- Returns:
- The result of the write operation.
- Since:
- Rhino 2.6.1
-
getFailureCause
Exception getFailureCause()
Get the associated cause exception if the write result is
WriteResult.FAILURE_EXCEPTION.- Returns:
- the cause exception, or
nullif the result was notFAILURE_EXCEPTION. - Since:
- Rhino 2.6.1
-
-