f17c25f76f1ea2ce6de0130d9dda724b6bd1d8b3
[onosfw.git] /
1 /*
2  * Copyright 2015 Open Networking Laboratory
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onosproject.ovsdb.controller.impl;
17
18 import io.netty.channel.ChannelFuture;
19 import io.netty.channel.ChannelFutureListener;
20
21 import org.onosproject.ovsdb.controller.driver.OvsdbProviderService;
22
23 /**
24  * The listener class. Handles when the node disconnect.
25  */
26 public class ChannelConnectionListener implements ChannelFutureListener {
27
28     private final OvsdbProviderService providerService;
29
30     /**
31      * Constructor from a OvsdbProviderService providerService.
32      *
33      * @param providerService the providerService to use
34      */
35     public ChannelConnectionListener(OvsdbProviderService providerService) {
36         this.providerService = providerService;
37     }
38
39     @Override
40     public void operationComplete(ChannelFuture arg0) {
41         providerService.nodeRemoved();
42     }
43 }