at.yawk.dbus.protocol.codec.IncomingMessageAdapter Maven / Gradle / Ivy
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package at.yawk.dbus.protocol.codec;
import at.yawk.dbus.protocol.DbusMessage;
import at.yawk.dbus.protocol.MessageBody;
import at.yawk.dbus.protocol.MessageConsumer;
import at.yawk.dbus.protocol.MessageHeader;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import io.netty.util.Attribute;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
/**
* @author yawkat
*/
@Slf4j
@RequiredArgsConstructor
class IncomingMessageAdapter extends SimpleChannelInboundHandler