/*
* Copyright (c) 2015 The Jupiter Project
*
* Licensed 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 com.lyncc.netty.production.common;
import java.util.concurrent.atomic.AtomicLong;
/**
* 发布订阅信息的包装类.
*
* jupiter
* org.jupiter.registry
*
* @author jiachun.fjc
*/
public class Message {
private static final AtomicLong sequenceGenerator = new AtomicLong(0);
private final long sequence;
private short sign;
private long version; // 版本号
private Object data;
public Message() {
this(sequenceGenerator.getAndIncrement());
}
public Message(long sequence) {
this.sequence = sequence;
}
public long sequence() {
return sequence;
}
public short sign() {
return sign;
}
public void sign(short sign) {
this.sign = sign;
}
public long getVersion() {
return version;
}
public void setVersion(long version) {
this.version = version;
}
public Object data() {
return data;
}
public void data(Object data) {
this.data = data;
}
@Override
public String toString() {
return "Message{" +
"sequence=" + sequence +
", sign=" + sign +
", version=" + version +
", data=" + data +
'}';
}
}