Java tutorial
/** 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 com.heliosapm.tsdblite.handlers.json; import java.nio.charset.Charset; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.heliosapm.tsdblite.json.JSON; import com.heliosapm.tsdblite.metric.MetricCache; import com.heliosapm.tsdblite.metric.Trace; import io.netty.buffer.ByteBuf; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.SimpleChannelInboundHandler; import io.netty.channel.ChannelHandler.Sharable; /** * <p>Title: SplitMetaInputHandler</p> * <p>Description: </p> * <p>Company: Helios Development Group LLC</p> * @author Whitehead (nwhitehead AT heliosdev DOT org) * <p><code>com.heliosapm.tsdblite.handlers.json.SplitMetaInputHandler</code></p> */ @Sharable public class SplitMetaInputHandler extends SimpleChannelInboundHandler<ByteBuf> { /** A UTF8 character set */ protected static final Charset UTF8 = Charset.forName("UTF8"); /** The endpoint where metrics are submitted to */ protected final MetricCache metricCache; /** Instance logger */ protected final Logger log = LoggerFactory.getLogger(getClass()); /** * Creates a new SplitMetaInputHandler */ public SplitMetaInputHandler() { this.metricCache = MetricCache.getInstance(); } @Override protected void channelRead0(final ChannelHandlerContext ctx, final ByteBuf msg) throws Exception { log.info(msg.toString(UTF8)); // if(log.isTraceEnabled()) { // log.trace(msg.toString(UTF8)); // } // metricCache.submit( // JSON.parseToObject(msg, Trace.class) // ); } }