xin.alum.aim.model.Ping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aim-starter Show documentation
Show all versions of aim-starter Show documentation
aim-starter 基于netty的WebSocket和Socket通信包
/*
* Copyright 2013-2019 Xia Jun([email protected]).
*
* 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.
*
***************************************************************************************
* *
* Website : http://www.farsunset.com *
* *
***************************************************************************************
*/
package xin.alum.aim.model;
import xin.alum.aim.constant.AIMConstant;
import com.google.protobuf.MessageLite;
import java.io.Serializable;
/**
* 服务端心跳请求
*/
public class Ping implements Serializable, Transportable {
private static final long serialVersionUID = 1L;
private static final String TAG = "PING";
private static final String DATA = "PING";
private static final Ping INSTANCE = new Ping();
private Ping() {
}
public static Ping getInstance() {
return INSTANCE;
}
@Override
public String toString() {
return TAG;
}
@Override
public byte[] getBody() {
return DATA.getBytes();
}
@Override
public int getType() {
return AIMConstant.DATA_TYPE_PING;
}
@Override
public MessageLite toBuilder() {
return null;
}
}