37f441421ee395f59d301d3d55afbb8b8ea47e2a
[l2switch.git] / hosttracker / implementation / src / main / java / org / opendaylight / l2switch / hosttracker / plugin / internal / HostTrackerOperation.java
1 /**
2  * Copyright (c) 2015 Evan Zeller 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.l2switch.hosttracker.plugin.internal;
9
10 import org.opendaylight.controller.md.sal.binding.api.ReadWriteTransaction;
11
12 interface HostTrackerOperation {
13     void applyOperation(ReadWriteTransaction tx);
14 }