01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.handler;
05:
06: import com.tc.async.api.AbstractEventHandler;
07: import com.tc.async.api.EventContext;
08: import com.tc.object.msg.LockStatisticsResponseMessage;
09:
10: public class LockStatisticsResponseHandler extends AbstractEventHandler {
11:
12: public void handleEvent(EventContext context) {
13: LockStatisticsResponseMessage msg = (LockStatisticsResponseMessage) context;
14: msg.send();
15: }
16:
17: }
|