BUG-8159: fix local transaction history tracking
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / DelayedDataTreeListenerRegistration.java
1 /*
2  * Copyright (c) 2015 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.controller.cluster.datastore;
9
10 import akka.actor.ActorRef;
11 import org.opendaylight.controller.cluster.datastore.messages.RegisterDataTreeChangeListener;
12 import org.opendaylight.controller.md.sal.dom.api.DOMDataTreeChangeListener;
13
14 /**
15  * Intermediate proxy registration returned to the user when we cannot
16  * instantiate the registration immediately. It provides a bridge to
17  * a real registration which may materialize at some point in the future.
18  */
19 final class DelayedDataTreeListenerRegistration
20         extends DelayedListenerRegistration<DOMDataTreeChangeListener, RegisterDataTreeChangeListener> {
21
22     DelayedDataTreeListenerRegistration(final RegisterDataTreeChangeListener registerTreeChangeListener,
23             final ActorRef registrationActor) {
24         super(registerTreeChangeListener, registrationActor);
25     }
26 }
27