org.apache.pulsar.functions.api.Context Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.apache.pulsar.functions.api;
import java.util.Collection;
import java.util.Map;
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import org.apache.pulsar.client.admin.PulsarAdmin;
import org.apache.pulsar.client.api.ConsumerBuilder;
import org.apache.pulsar.client.api.PulsarClientException;
import org.apache.pulsar.client.api.Schema;
import org.apache.pulsar.client.api.TypedMessageBuilder;
import org.apache.pulsar.common.classification.InterfaceAudience;
import org.apache.pulsar.common.classification.InterfaceStability;
import org.apache.pulsar.functions.api.utils.FunctionRecord;
/**
* Context provides contextual information to the executing function.
* Features like which message id we are handling, whats the topic name of the
* message, what are our operating constraints, etc can be accessed by the
* executing function
*/
@InterfaceAudience.Public
@InterfaceStability.Stable
public interface Context extends BaseContext {
/**
* Get a list of all input topics.
*
* @return a list of all input topics
*/
Collection getInputTopics();
/**
* Get the output topic of the source.
*
* @return output topic name
*/
String getOutputTopic();
/**
* Access the record associated with the current input value.
*
* @return the current record
*/
Record> getCurrentRecord();
/**
* Get output schema builtin type or custom class name.
*
* @return output schema builtin type or custom class name
*/
String getOutputSchemaType();
/**
* The name of the function that we are executing.
*
* @return The Function name
*/
String getFunctionName();
/**
* The id of the function that we are executing.
*
* @return The function id
*/
String getFunctionId();
/**
* The version of the function that we are executing.
*
* @return The version id
*/
String getFunctionVersion();
/**
* Get a map of all user-defined key/value configs for the function.
*
* @return The full map of user-defined config values
*/
Map getUserConfigMap();
/**
* Get any user-defined key/value.
*
* @param key The key
* @return The Optional value specified by the user for that key.
*/
Optional