Uses of Interface
com.google.appengine.api.memcache.ErrorHandler
-
Packages that use ErrorHandler Package Description com.google.appengine.api.memcache Provides fast but unreliable data storage, also accessible via a JCache interface. -
-
Uses of ErrorHandler in com.google.appengine.api.memcache
Subinterfaces of ErrorHandler in com.google.appengine.api.memcache Modifier and Type Interface Description interface
ConsistentErrorHandler
A marker interface to indicate that allMemcacheServiceException
exceptions should be handled byhandleServiceError(MemcacheServiceException)
.Classes in com.google.appengine.api.memcache that implement ErrorHandler Modifier and Type Class Description class
ConsistentLogAndContinueErrorHandler
Similar to the deprecatedLogAndContinueErrorHandler
but consistently handles all back-end related errors.class
LogAndContinueErrorHandler
The default error handler, which will cause most service errors to behave as though there were a cache miss, not an error.class
StrictErrorHandler
A strict error handler, which will throwMemcacheServiceException
orInvalidValueException
for any service error condition.Methods in com.google.appengine.api.memcache that return ErrorHandler Modifier and Type Method Description static ErrorHandler
ErrorHandlers. getDefault()
Returns the default error handler.ErrorHandler
BaseMemcacheService. getErrorHandler()
Fetches the current error handler.Methods in com.google.appengine.api.memcache with parameters of type ErrorHandler Modifier and Type Method Description void
BaseMemcacheService. setErrorHandler(ErrorHandler handler)
Registers a newErrorHandler
.
-