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 interfaceConsistentErrorHandlerA marker interface to indicate that allMemcacheServiceExceptionexceptions should be handled byhandleServiceError(MemcacheServiceException).Classes in com.google.appengine.api.memcache that implement ErrorHandler Modifier and Type Class Description classConsistentLogAndContinueErrorHandlerSimilar to the deprecatedLogAndContinueErrorHandlerbut consistently handles all back-end related errors.classLogAndContinueErrorHandlerThe default error handler, which will cause most service errors to behave as though there were a cache miss, not an error.classStrictErrorHandlerA strict error handler, which will throwMemcacheServiceExceptionorInvalidValueExceptionfor any service error condition.Methods in com.google.appengine.api.memcache that return ErrorHandler Modifier and Type Method Description static ErrorHandlerErrorHandlers. getDefault()Returns the default error handler.ErrorHandlerBaseMemcacheService. getErrorHandler()Fetches the current error handler.Methods in com.google.appengine.api.memcache with parameters of type ErrorHandler Modifier and Type Method Description voidBaseMemcacheService. setErrorHandler(ErrorHandler handler)Registers a newErrorHandler.
-