1515 * library.
1616 *
1717 * This is an interface implemented by classes that want to receive callbacks
18- * in the event of an error in {@link MemCachedClient }. The implementor can do
18+ * in the event of an error in {@link MemcachedClient }. The implementor can do
1919 * things like flush caches or perform additioonal logging.
2020 *
2121 * @author Dan Zivkovic <[email protected] > @@ -28,47 +28,47 @@ public interface ErrorHandler {
2828 /**
2929 * Called for errors thrown during initialization.
3030 */
31- public void handleErrorOnInit ( final MemCachedClient client ,
31+ public void handleErrorOnInit ( final MemcachedClient client ,
3232 final Throwable error );
3333
3434 /**
35- * Called for errors thrown during {@link MemCachedClient #get(String)} and related methods.
35+ * Called for errors thrown during {@link MemcachedClient #get(String)} and related methods.
3636 */
37- public void handleErrorOnGet ( final MemCachedClient client ,
37+ public void handleErrorOnGet ( final MemcachedClient client ,
3838 final Throwable error ,
3939 final String cacheKey );
4040
4141 /**
42- * Called for errors thrown during {@link MemCachedClient #getMulti(String)} and related methods.
42+ * Called for errors thrown during {@link MemcachedClient #getMulti(String)} and related methods.
4343 */
44- public void handleErrorOnGet ( final MemCachedClient client ,
44+ public void handleErrorOnGet ( final MemcachedClient client ,
4545 final Throwable error ,
4646 final String [] cacheKeys );
4747
4848 /**
49- * Called for errors thrown during {@link MemCachedClient #set(String,Object)} and related methods.
49+ * Called for errors thrown during {@link MemcachedClient #set(String,Object)} and related methods.
5050 */
51- public void handleErrorOnSet ( final MemCachedClient client ,
51+ public void handleErrorOnSet ( final MemcachedClient client ,
5252 final Throwable error ,
5353 final String cacheKey );
5454
5555 /**
56- * Called for errors thrown during {@link MemCachedClient #delete(String)} and related methods.
56+ * Called for errors thrown during {@link MemcachedClient #delete(String)} and related methods.
5757 */
58- public void handleErrorOnDelete ( final MemCachedClient client ,
58+ public void handleErrorOnDelete ( final MemcachedClient client ,
5959 final Throwable error ,
6060 final String cacheKey );
6161
6262 /**
63- * Called for errors thrown during {@link MemCachedClient #flushAll()} and related methods.
63+ * Called for errors thrown during {@link MemcachedClient #flushAll()} and related methods.
6464 */
65- public void handleErrorOnFlush ( final MemCachedClient client ,
65+ public void handleErrorOnFlush ( final MemcachedClient client ,
6666 final Throwable error );
6767
6868 /**
69- * Called for errors thrown during {@link MemCachedClient #stats()} and related methods.
69+ * Called for errors thrown during {@link MemcachedClient #stats()} and related methods.
7070 */
71- public void handleErrorOnStats ( final MemCachedClient client ,
71+ public void handleErrorOnStats ( final MemcachedClient client ,
7272 final Throwable error );
7373
7474} // interface
0 commit comments