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

com.microsoft.signalr.ActionBase Maven / Gradle / Ivy

The newest version!
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

package com.microsoft.signalr;

import io.reactivex.rxjava3.core.Completable;

interface ActionBase {
    // We can't use the @FunctionalInterface annotation because it's only
    // available on Android API Level 24 and above.
    Completable invoke(Object ... params);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy