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

com.gemstone.gemfire.internal.cache.execute.FunctionContextImpl 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.internal.cache.execute;

import com.gemstone.gemfire.cache.execute.Execution;
import com.gemstone.gemfire.cache.execute.Function;
import com.gemstone.gemfire.cache.execute.FunctionContext;
import com.gemstone.gemfire.cache.execute.RegionFunctionContext;
import com.gemstone.gemfire.cache.execute.ResultSender;

/**
 * Context available to application functions which is passed from GemFire to
 * {@link Function}. 
* * For data dependent functions refer to {@link RegionFunctionContext} * * @author Yogesh Mahajan * @author Mitch Thomas * * @since 6.0 * * @see RegionFunctionContextImpl * */ public class FunctionContextImpl implements FunctionContext { private Object args = null; private String functionId = null; private ResultSender resultSender = null ; private final boolean isPossDup; public FunctionContextImpl(final String functionId, final Object args, ResultSender resultSender) { this.functionId = functionId; this.args = args; this.resultSender = resultSender; this.isPossDup = false; } public FunctionContextImpl(final String functionId, final Object args, ResultSender resultSender, boolean isPossibleDuplicate) { this.functionId = functionId; this.args = args; this.resultSender = resultSender; this.isPossDup = isPossibleDuplicate; } /** * Returns the arguments provided to this function execution. These are the * arguments specified by caller using * {@link Execution#withArgs(Object)} * * @return the arguments or null if there are no arguments */ public final Object getArguments() { return this.args; } /** * Get the identifier of the running function used for logging and * administration purposes * * @return String uniquely identifying this running instance * @see Function#getId() */ public String getFunctionId() { return this.functionId; } @Override public String toString() { final StringBuilder buf = new StringBuilder(); buf.append("[FunctionContextImpl:"); buf.append("functionId="); buf.append(this.functionId); buf.append(";args="); buf.append(this.args); buf.append(']'); return buf.toString(); } public ResultSender getResultSender() { return this.resultSender; } public boolean isPossibleDuplicate() { return this.isPossDup; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy