All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gemstone.gemfire.distributed.internal.DirectReplyProcessor Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you
 * may not use this file except in compliance with the License. You
 * may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied. See the License for the specific language governing
 * permissions and limitations under the License. See accompanying
 * LICENSE file.
 */
package com.gemstone.gemfire.distributed.internal;

import java.util.Collection;
import java.util.Collections;

import com.gemstone.gemfire.CancelCriterion;
import com.gemstone.gemfire.distributed.internal.membership.InternalDistributedMember;

/**
 * A reply processor optimized for direct ack responses (It skips synchronization,
 * doesn't register with the processor keeper, etc.)
 * @author dsmith
 *
 */
public class DirectReplyProcessor extends ReplyProcessor21 {

  /**
   * Creates a new ReplyProcessor that wants replies from
   * a single member of a distributed system.
   * 
   * @param system the DistributedSystem connection
   * @param member the member this processor wants a reply from
   */
  public DirectReplyProcessor(InternalDistributedSystem system,
                          InternalDistributedMember member) {
    super(system.getDistributionManager(), system, member, null, false);
  }

  /**
   * Creates a new ReplyProcessor that wants replies from
   * a single member of a distributed system.
   * 
   * @param system the DistributedSystem connection
   * @param member the member this processor wants a reply from
   * @param cancelCriterion optional CancelCriterion to use; will use the 
   *  DistributionManager if null
   */
  public DirectReplyProcessor(InternalDistributedSystem system,
                          InternalDistributedMember member,
                          CancelCriterion cancelCriterion) {
    super(system.getDistributionManager(), system, member, cancelCriterion,
        false);
  }

  /**
   * Creates a new ReplyProcessor that wants replies from
   * a single member of a distributed system.
   * 
   * @param dm the DistributionManager to use for messaging and membership
   * @param member the member this processor wants a reply from
   */
  public DirectReplyProcessor(DM dm, 
                          InternalDistributedMember member) {
    super(dm, dm.getSystem(), member, null, false);
  }
  
  /**
   * Creates a new ReplyProcessor that wants replies from
   * some number of members of a distributed system. Call this method
   * with {@link DistributionManager#getDistributionManagerIds} if
   * you want replies from all DMs including the one hosted in this
   * VM.
   * 
   * @param dm the DistributionManager to use for messaging and membership
   * @param initMembers the Set of members this processor wants replies from
   */
  public DirectReplyProcessor(DM dm,
                          Collection initMembers) {
    this(dm, dm.getSystem(), initMembers, null);
  }
  
  /**
   * Creates a new ReplyProcessor that wants replies from
   * some number of members of a distributed system. Call this method
   * with {@link DistributionManager#getDistributionManagerIds} if
   * you want replies from all DMs including the one hosted in this
   * VM.
   * 
   * @param system the DistributedSystem connection
   * @param initMembers the Set of members this processor wants replies from
   */
  public DirectReplyProcessor(InternalDistributedSystem system,
                          Collection initMembers) {
    this(system.getDistributionManager(), system, initMembers, null);
  }
  
  /**
   * Creates a new ReplyProcessor that wants replies from
   * some number of members of a distributed system. Call this method
   * with {@link DistributionManager#getDistributionManagerIds} if
   * you want replies from all DMs including the one hosted in this
   * VM.
   * 
   * @param system the DistributedSystem connection
   * @param initMembers the Set of members this processor wants replies from
   * @param cancelCriterion optional CancelCriterion to use; will use the 
   * DistributedSystem's DistributionManager if null
   */
  public DirectReplyProcessor(InternalDistributedSystem system,
                          Collection initMembers,
                          CancelCriterion cancelCriterion) {
    this(system.getDistributionManager(), system, initMembers, cancelCriterion);
  }
  
  /**
   * @param dm
   * @param system
   * @param initMembers
   * @param cancelCriterion
   */
  public DirectReplyProcessor(DM dm, InternalDistributedSystem system,
      Collection initMembers, CancelCriterion cancelCriterion) {
    super(dm, system, initMembers, cancelCriterion, false);
  }
  
  @Override
  public final int register() {
    if(processorId != 0) {
      return processorId;
    }
    return super.register();
  }

  @Override
  protected boolean removeMember(InternalDistributedMember m, boolean departed) {
    if(isExpectingDirectReply()) {
      return true;
    } else {
      return super.removeMember(m, departed);
    }
  }

  @Override
  protected boolean isDirectReplyProcessor() {
    return true;
  }

  public boolean isExpectingDirectReply() {
    return processorId == 0;
  }

  @Override
  protected boolean stillWaiting() {
    if(isExpectingDirectReply()) {
      return false;
    } else {
      return super.stillWaiting();
    }
  }
  
  @Override
  protected void checkIfDone() {
    if(processorId != 0) {
      super.checkIfDone();
    }
  }
  
  
  
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy