/* * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.md.sal.common.api.data; import org.opendaylight.yangtools.concepts.Path; import com.google.common.util.concurrent.CheckedFuture; /** * User-supplied participant in three-phase commit of transaction for configuration data tree * * Client-supplied implementation of commit handler for subtree, which * is responsible for processing CAN-COMMIT phase of three-phase commit protocol * and return CommitCohort, which provides access to additional transitions * such as PRE-COMMIT, COMMIT and ABORT. * * @param

* Type of path (subtree identifier), which represents location in * tree * @param * Type of data (payload), which represents data payload */ public interface AsyncConfigurationCommitHandler

, D> { /** * * Requests a can commit phase * * Implementations SHOULD NOT do any blocking operation during * processing this callback. * * Implementation Notes *