Javadoc update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / connection / MessageConsumer.java
1 /* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */
2
3 package org.opendaylight.openflowjava.protocol.impl.connection;
4
5 import org.opendaylight.yangtools.yang.binding.DataObject;
6
7 /**
8  * @author mirehak
9  */
10 public interface MessageConsumer {
11
12     /**
13      * @param message to process
14      */
15     public void consume(DataObject message);
16
17 }