com.microsoft.signalr.Function3Single Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of signalr Show documentation
Show all versions of signalr Show documentation
ASP.NET Core SignalR Client for Java applications
// 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.Single;
/**
* A callback that takes one parameter.
*
* @param The type of the first parameter to the callback.
* @param The type of the second parameter to the callback.
* @param The type of the third parameter to the callback.
*/
public interface Function3Single {
// We can't use the @FunctionalInterface annotation because it's only
// available on Android API Level 24 and above.
Single invoke(T1 param1, T2 param2, T3 param3);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy