Remove unused Closeable interface
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / BGPDispatcherImpl.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;
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.bgp.rib.impl.spi.BGPConnection;
16 import org.opendaylight.protocol.bgp.rib.impl.spi.BGPDispatcher;
17 import org.opendaylight.protocol.framework.Dispatcher;
18 import org.opendaylight.protocol.framework.ProtocolMessageFactory;
19
20 /**
21  * Implementation of BGPDispatcher.
22  */
23 public final class BGPDispatcherImpl implements BGPDispatcher {
24
25         private final Dispatcher dispatcher;
26
27         public BGPDispatcherImpl(final Dispatcher dispatcher) throws IOException {
28                 this.dispatcher = dispatcher;
29         }
30
31         @Override
32         public Future<? extends BGPSession> createClient(final BGPConnection connection, final ProtocolMessageFactory parser) throws IOException {
33                 return this.dispatcher.createClient(connection, new BGPSessionFactory(parser));
34         }
35
36         public Dispatcher getDispatcher() {
37                 return this.dispatcher;
38         }
39 }