blob: bc71f2b119782d7af51892a168349b7f879b1e88 [file] [log] [blame]
/*
* 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.iotdb.flink;
import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
import java.util.List;
/** Event serializes the device/sensor related data, such as time, measurements etc. */
public class Event {
private String device;
private Long timestamp;
private List<String> measurements;
private List<TSDataType> types;
private List<Object> values;
public Event(
String device,
Long timestamp,
List<String> measurements,
List<TSDataType> types,
List<Object> values) {
this.device = device;
this.timestamp = timestamp;
this.measurements = measurements;
this.types = types;
this.values = values;
}
public List<TSDataType> getTypes() {
return types;
}
public void setTypes(List<TSDataType> types) {
this.types = types;
}
public String getDevice() {
return device;
}
public Long getTimestamp() {
return timestamp;
}
public List<String> getMeasurements() {
return measurements;
}
public List<Object> getValues() {
return values;
}
}