All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.kudu.util.AsyncUtil Maven / Gradle / Ivy

Go to download

org.apache.kudu:kudu-client with netty package relocations reverted and netty classes stripped away so that camel-quarkus-kudu can use quarkus-netty as a replacement

The newest version!
// 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.kudu.util;

import com.stumbleupon.async.Callback;
import com.stumbleupon.async.Deferred;
import org.apache.yetus.audience.InterfaceAudience;

/**
 * Utility methods for various parts of async, such as Deferred.
 * TODO (KUDU-602): Some of these methods could eventually be contributed back to async or to a
 * custom fork/derivative of async.
 */
@InterfaceAudience.Private
public class AsyncUtil {

  /** Non-constructable utility class. */
  private AsyncUtil() {
  }

  /**
   * Register a callback and an "errback".
   * 

* This has the exact same effect as {@link Deferred#addCallbacks(Callback, Callback)} * keeps the type information "correct" when the callback and errback return a * {@code Deferred}. * @param d The {@code Deferred} we want to add the callback and errback to. * @param cb The callback to register. * @param eb The errback to register. * @return {@code d} with an "updated" type. */ @SuppressWarnings("unchecked") public static , E> Deferred addCallbacksDeferring(final Deferred d, final Callback cb, final Callback eb) { return d.addCallbacks((Callback) cb, eb); } /** * Workaround for {@link Deferred#addBoth}'s failure to use generics correctly. Allows callers * to provide a {@link Callback} which takes an {@link Object} instead of the type of the deferred * it is applied to, which avoids a runtime {@link ClassCastException} when the deferred fails. */ @SuppressWarnings("unchecked") public static Deferred addBoth(final Deferred deferred, final Callback callback) { return ((Deferred) deferred).addBoth(callback); } /** * Workaround for {@link Deferred#addBothDeferring}'s failure to use generics correctly. Allows * callers to provide a {@link Callback} which takes an {@link Object} instead of the type of the * deferred it is applied to, which avoids a runtime {@link ClassCastException} when the deferred * fails. */ @SuppressWarnings("unchecked") public static Deferred addBothDeferring(final Deferred deferred, final Callback, Object> callback) { return ((Deferred) deferred).addBothDeferring(callback); } }