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

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

There is a newer version: 9.0.0-preview.7.24406.2
Show 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;

/**
 * A callback that takes three parameters.
 *
 * @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 Action3 {
    // We can't use the @FunctionalInterface annotation because it's only
    // available on Android API Level 24 and above.
    void invoke(T1 param1, T2 param2, T3 param3);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy