package com.walker.tcp.websocket;
import com.walker.infrastructure.utils.JsonUtils;
import com.walker.infrastructure.utils.StringUtils;
import com.walker.tcp.data.BaseResponse;
import com.walker.tcp.util.WebSocketUtils;
import io.netty.handler.codec.http.websocketx.TextWebSocketFrame;
import java.util.HashMap;
import java.util.Map;
public abstract class JsonResponse extends BaseResponse
*
* result.put("name", this.name);
* result.put("money", this.money);
*
*
* @param result
*/
protected abstract void translateProperties(Map result);
// @Override
// public String getDelimiter() {
// return StringUtils.EMPTY_STRING;
// }
}