Interface SessionOwnershipWriteResult
-
public interface SessionOwnershipWriteResult
Provides 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 Exception
getFailureCause()
Get the associated cause exception if the write result isWriteResult.FAILURE_EXCEPTION
.String
getKey()
Get the key that this write result applies to.WriteResult
getResult()
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
null
if the result was notFAILURE_EXCEPTION
. - Since:
- Rhino 2.6.1
-
-