org.apache.rocketmq.store.DispatchRequest 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.rocketmq.store;
import java.util.Map;
public class DispatchRequest {
private final String topic;
private final int queueId;
private final long commitLogOffset;
private int msgSize;
private final long tagsCode;
private final long storeTimestamp;
private final long consumeQueueOffset;
private final String keys;
private final boolean success;
private final String uniqKey;
private final int sysFlag;
private final long preparedTransactionOffset;
private final Map propertiesMap;
private byte[] bitMap;
private int bufferSize = -1;//the buffer size maybe larger than the msg size if the message is wrapped by something
public DispatchRequest(
final String topic,
final int queueId,
final long commitLogOffset,
final int msgSize,
final long tagsCode,
final long storeTimestamp,
final long consumeQueueOffset,
final String keys,
final String uniqKey,
final int sysFlag,
final long preparedTransactionOffset,
final Map propertiesMap
) {
this.topic = topic;
this.queueId = queueId;
this.commitLogOffset = commitLogOffset;
this.msgSize = msgSize;
this.tagsCode = tagsCode;
this.storeTimestamp = storeTimestamp;
this.consumeQueueOffset = consumeQueueOffset;
this.keys = keys;
this.uniqKey = uniqKey;
this.sysFlag = sysFlag;
this.preparedTransactionOffset = preparedTransactionOffset;
this.success = true;
this.propertiesMap = propertiesMap;
}
public DispatchRequest(int size) {
this.topic = "";
this.queueId = 0;
this.commitLogOffset = 0;
this.msgSize = size;
this.tagsCode = 0;
this.storeTimestamp = 0;
this.consumeQueueOffset = 0;
this.keys = "";
this.uniqKey = null;
this.sysFlag = 0;
this.preparedTransactionOffset = 0;
this.success = false;
this.propertiesMap = null;
}
public DispatchRequest(int size, boolean success) {
this.topic = "";
this.queueId = 0;
this.commitLogOffset = 0;
this.msgSize = size;
this.tagsCode = 0;
this.storeTimestamp = 0;
this.consumeQueueOffset = 0;
this.keys = "";
this.uniqKey = null;
this.sysFlag = 0;
this.preparedTransactionOffset = 0;
this.success = success;
this.propertiesMap = null;
}
public String getTopic() {
return topic;
}
public int getQueueId() {
return queueId;
}
public long getCommitLogOffset() {
return commitLogOffset;
}
public int getMsgSize() {
return msgSize;
}
public long getStoreTimestamp() {
return storeTimestamp;
}
public long getConsumeQueueOffset() {
return consumeQueueOffset;
}
public String getKeys() {
return keys;
}
public long getTagsCode() {
return tagsCode;
}
public int getSysFlag() {
return sysFlag;
}
public long getPreparedTransactionOffset() {
return preparedTransactionOffset;
}
public boolean isSuccess() {
return success;
}
public String getUniqKey() {
return uniqKey;
}
public Map getPropertiesMap() {
return propertiesMap;
}
public byte[] getBitMap() {
return bitMap;
}
public void setBitMap(byte[] bitMap) {
this.bitMap = bitMap;
}
public void setMsgSize(int msgSize) {
this.msgSize = msgSize;
}
public int getBufferSize() {
return bufferSize;
}
public void setBufferSize(int bufferSize) {
this.bufferSize = bufferSize;
}
}