Mass replace CRLF->LF
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / connection / UdpMessageListenerWrapper.java
1 /*
2  * Copyright (c) 2014 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.impl.core.connection;
10
11 import io.netty.util.concurrent.Future;
12 import io.netty.util.concurrent.GenericFutureListener;
13
14 import java.net.InetSocketAddress;
15
16 /**
17  * Wraps outgoing message and includes listener attached to this message. This object
18  * is sent to OFEncoder. When OFEncoder fails to serialize the message,
19  * listener is filled with exception. The exception is then delegated to upper ODL layers.
20  * This object is used for UDP communication - it also carries recipient address
21  
22  * @author michal.polkorab
23  */
24 public class UdpMessageListenerWrapper extends MessageListenerWrapper {
25
26     private InetSocketAddress address;
27
28     /**
29      * @param msg message to be sent
30      * @param listener listener attached to channel.write(msg) Future
31      * @param address recipient's address
32      */
33     public UdpMessageListenerWrapper(Object msg, GenericFutureListener<Future<Void>> listener,
34             InetSocketAddress address) {
35         super(msg, listener);
36         this.address = address;
37     }
38
39     /**
40      * @return recipient address
41      */
42     public InetSocketAddress getAddress() {
43         return address;
44     }
45 }