Return-Path: X-Original-To: apmail-curator-dev-archive@minotaur.apache.org Delivered-To: apmail-curator-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 302BC17F5C for ; Tue, 12 May 2015 16:07:05 +0000 (UTC) Received: (qmail 31042 invoked by uid 500); 12 May 2015 16:07:00 -0000 Delivered-To: apmail-curator-dev-archive@curator.apache.org Received: (qmail 30998 invoked by uid 500); 12 May 2015 16:07:00 -0000 Mailing-List: contact dev-help@curator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@curator.apache.org Delivered-To: mailing list dev@curator.apache.org Received: (qmail 30879 invoked by uid 99); 12 May 2015 16:07:00 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 May 2015 16:07:00 +0000 Date: Tue, 12 May 2015 16:07:00 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: dev@curator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CURATOR-215) Support async multi/transaction APIs MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CURATOR-215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14540115#comment-14540115 ] ASF GitHub Bot commented on CURATOR-215: ---------------------------------------- Github user madrob commented on a diff in the pull request: https://github.com/apache/curator/pull/77#discussion_r30150375 --- Diff: curator-framework/src/main/java/org/apache/curator/framework/imps/CuratorMultiTransactionImpl.java --- @@ -0,0 +1,166 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.curator.framework.imps; + +import com.google.common.base.Preconditions; +import com.google.common.collect.Lists; +import org.apache.curator.RetryLoop; +import org.apache.curator.TimeTrace; +import org.apache.curator.framework.CuratorFramework; +import org.apache.curator.framework.api.BackgroundCallback; +import org.apache.curator.framework.api.CuratorEvent; +import org.apache.curator.framework.api.CuratorEventType; +import org.apache.curator.framework.api.transaction.CuratorMultiTransaction; +import org.apache.curator.framework.api.transaction.CuratorMultiTransactionMain; +import org.apache.curator.framework.api.transaction.CuratorOp; +import org.apache.curator.framework.api.transaction.CuratorTransactionResult; +import org.apache.zookeeper.AsyncCallback; +import org.apache.zookeeper.OpResult; +import java.util.Arrays; +import java.util.List; +import java.util.concurrent.Callable; +import java.util.concurrent.Executor; + +/** + * @deprecated Use {@link CuratorFramework#transaction()} --- End diff -- Why are we adding a class that is immediately deprecated? Or is this a result of a move that isn't clear on the web view of the PR? > Support async multi/transaction APIs > ------------------------------------ > > Key: CURATOR-215 > URL: https://issues.apache.org/jira/browse/CURATOR-215 > Project: Apache Curator > Issue Type: Sub-task > Components: Client, Framework > Reporter: Jordan Zimmerman > Assignee: Jordan Zimmerman > Fix For: 3.0.0 > > > ZooKeeper 3.5 adds async multi/transaction APIs. Add support in Curator. -- This message was sent by Atlassian JIRA (v6.3.4#6332)