BUG-55: make sure session initialization asynchronous
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / spi / BGPDispatcher.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. 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 package org.opendaylight.protocol.bgp.rib.impl.spi;
9
10 import io.netty.util.concurrent.Future;
11
12 import java.io.IOException;
13
14 import org.opendaylight.protocol.bgp.parser.BGPSession;
15 import org.opendaylight.protocol.framework.ProtocolMessageFactory;
16
17 /**
18  * Dispatcher class for creating BGP clients.
19  */
20 public interface BGPDispatcher {
21
22         /**
23          * Creates BGP client.
24          * 
25          * @param connection attributes required for connection
26          * @param parser BGP message parser
27          * @return client session
28          * @throws IOException
29          */
30         Future<? extends BGPSession> createClient(BGPConnection connection, ProtocolMessageFactory parser) throws IOException;
31 }