Added Yang code generation for Multipart messages
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / connection / ShutdownProvider.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 com.google.common.util.concurrent.ListenableFuture;
6
7
8 /**
9  * @author mirehak
10  *
11  */
12 public interface ShutdownProvider {
13
14     /**
15      * @return shutdown future 
16      */
17     public ListenableFuture<Boolean> shutdown();
18
19 }