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

com.microsoft.azure.functions.signalr.SignalRGroupAction Maven / Gradle / Ivy

Go to download

This package contains all Java interfaces and annotations to interact with Microsoft Azure functions runtime for SignalR Service.

The newest version!
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 */
package com.microsoft.azure.functions.signalr;

/**
 * 

* SignalR group action (used with SignalR output binding) *

* * @since 1.0.0 */ public class SignalRGroupAction { /** * Constructor */ public SignalRGroupAction() { } /** * Constructor * @param action Action to take ("add" or "remove") * @param groupName Group to add user to or remove user from * @param userId User to add to or remove from group */ public SignalRGroupAction(String action, String groupName, String userId) { this.action = action; this.groupName = groupName; this.userId = userId; } /** * User to add to or remove from group */ public String userId = ""; /** * Group to add user to or remove user from */ public String groupName = ""; /** * Action to take ("add" or "remove") */ public String action = ""; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy