Class WriteBehindOpResult
- java.lang.Object
-
- com.alachisoft.ncache.runtime.caching.WriteBehindOpResult
-
public class WriteBehindOpResult extends java.lang.ObjectThis class represents the result(s) of data source operations.
-
-
Constructor Summary
Constructors Constructor Description WriteBehindOpResult(EventType eventType, WriteBehindOpStatus status, java.lang.Exception exception)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EventTypegetEventType()Specifies the datasource event type.java.lang.ExceptiongetException()Gets the exception.WriteBehindOpStatusgetStatus()SpecifiesWriteBehindOpStatusof data source operation.
-
-
-
Constructor Detail
-
WriteBehindOpResult
public WriteBehindOpResult(EventType eventType, WriteBehindOpStatus status, java.lang.Exception exception)
-
-
Method Detail
-
getEventType
public final EventType getEventType()
Specifies the datasource event type.- Returns:
- The EventType enum.
-
getStatus
public final WriteBehindOpStatus getStatus()
SpecifiesWriteBehindOpStatusof data source operation.- Returns:
- The WriteBehindOpStatus enum.
-
getException
public final java.lang.Exception getException()
Gets the exception. This property represents errors that occur during application execution.- Returns:
- The corresponding exception.
-
-