01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.objectserver.impl;
06:
07: import com.tc.objectserver.api.ObjectRequestManager;
08: import com.tc.objectserver.context.ManagedObjectRequestContext;
09: import com.tc.util.concurrent.NoExceptionLinkedQueue;
10:
11: public class TestObjectRequestManager implements ObjectRequestManager {
12:
13: public final NoExceptionLinkedQueue startCalls = new NoExceptionLinkedQueue();
14:
15: public void requestObjects(
16: ManagedObjectRequestContext responseContext,
17: int maxReachableObjects) {
18: // NOP
19: }
20:
21: public void start() {
22: startCalls.put(new Object());
23: }
24:
25: }
|