Javadoc update
[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 public interface ShutdownProvider {
12
13     /**
14      * @return shutdown future 
15      */
16     public ListenableFuture<Boolean> shutdown();
17
18 }