blob: bb1cac93f85d6b7b441a1d4bafab10600ef807c7 [file] [log] [blame]
YuanyouZhangebe12612015-08-05 18:19:09 +08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
YuanyouZhangebe12612015-08-05 18:19:09 +08003 *
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 */
16package org.onosproject.ovsdb.controller.impl;
17
18import io.netty.channel.ChannelFuture;
19import io.netty.channel.ChannelFutureListener;
20
21import org.onosproject.ovsdb.controller.driver.OvsdbProviderService;
22
23/**
24 * The listener class. Handles when the node disconnect.
25 */
26public 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}