Add method to register listener for unknown msg
[openflowjava.git] / openflow-protocol-api / src / main / java / org / opendaylight / openflowjava / protocol / api / extensibility / OFSerializer.java
1 /*
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowjava.protocol.api.extensibility;
10
11 import io.netty.buffer.ByteBuf;
12 import org.opendaylight.yangtools.yang.binding.DataContainer;
13
14 /**
15  * Uniform interface for serializers
16  * @author michal.polkorab
17  * @author timotej.kubas
18  * @param <T> message type
19  */
20 public interface OFSerializer<T extends DataContainer> extends OFGeneralSerializer {
21
22     /**
23      * Transforms POJO/DTO into byte message (ByteBuf).
24      * @param input object to be serialized
25      * @param outBuffer output buffer
26      */
27     void serialize(T input, ByteBuf outBuffer);
28
29 }