org.apache.pulsar.functions.windowing.Event 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.windowing;
import org.apache.pulsar.functions.api.Record;
/**
* An event is a wrapper object that gets stored in the window.
*
* @param the type of the object thats wrapped
*/
public interface Event {
/**
* @return the record associated with the event
*/
Record> getRecord();
/**
* The event timestamp in millis.
*
* @return the event timestamp in milliseconds.
*/
long getTimestamp();
/**
* Returns the wrapped object.
*
* @return the wrapped object.
*/
T get();
/**
* If this is a watermark event or not. Watermark events are used
* for tracking time while processing event based ts.
*
* @return true if this is a watermark event
*/
boolean isWatermark();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy