View Javadoc
1   /*
2    * #%L
3    * FutureReplyCallback.java - mongodb-async-driver - Allanbank Consulting, Inc.
4    * %%
5    * Copyright (C) 2011 - 2014 Allanbank Consulting, Inc.
6    * %%
7    * Licensed under the Apache License, Version 2.0 (the "License");
8    * you may not use this file except in compliance with the License.
9    * You may obtain a copy of the License at
10   * 
11   *      http://www.apache.org/licenses/LICENSE-2.0
12   * 
13   * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   * #L%
19   */
20  
21  package com.allanbank.mongodb.client.callback;
22  
23  import com.allanbank.mongodb.client.FutureCallback;
24  import com.allanbank.mongodb.client.message.Reply;
25  
26  /**
27   * FutureReplyCallback provides a {@link FutureCallback} that also implements
28   * the {@link ReplyCallback} interface.
29   * 
30   * @copyright 2014, Allanbank Consulting, Inc., All Rights Reserved
31   */
32  public class FutureReplyCallback extends FutureCallback<Reply> implements
33          ReplyCallback {
34  
35      /**
36       * {@inheritDoc}
37       * <p>
38       * Overridden to return true.
39       * </p>
40       */
41      @Override
42      public boolean isLightWeight() {
43          return true;
44      }
45  }