ELAN FT Support for BE
[vpnservice.git] / mdsalutil / mdsalutil-impl / src / main / java / org / opendaylight / vpnservice / mdsalutil / internal / NotifyTask.java
1 /*
2  * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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.vpnservice.mdsalutil.internal;
9
10 import org.slf4j.Logger;
11 import org.slf4j.LoggerFactory;
12
13 class NotifyTask implements Runnable {
14     private static final Logger logger = LoggerFactory.getLogger(NotifyTask.class);
15
16     @Override
17     public void run() {
18         logger.debug("Notify Task is running for the task {}", this);
19         synchronized (this) {
20             notifyAll();
21         }
22     }
23
24 }