org.apache.pulsar.websocket.data.ProducerMessage 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.websocket.data;
import java.util.List;
import java.util.Map;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* Class represent single message to be published.
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class ProducerMessage {
// Actual message payload.
public String payload;
// Optional properties.
public Map properties;
// Request context
public String context;
// Partition key.
public String key;
// Clusters to replicate message to.
public List replicationClusters;
// Message event time.
public String eventTime;
// Message sequenceId.
public long sequenceId;
// Whether to disable replication of the message.
public boolean disableReplication;
// Deliver the message only at or after the specified absolute timestamp.
public long deliverAt;
// Deliver the message only after the specified relative delay in milliseconds.
public long deliverAfterMs;
// Version of schema to use for the message.
public long schemaVersion;
// Base64 encoded serialized schema for key
public String keySchema;
// Base64 encoded serialized schema for payload
public String valueSchema;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy