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

com.bluejeans.utils.ipc.IPCHandler Maven / Gradle / Ivy

The newest version!
/*
 * Copyright Blue Jeans Network.
 */
package com.bluejeans.utils.ipc;

import java.util.Map;

import com.fasterxml.jackson.databind.JsonNode;

/**
 * IPC handler
 *
 * @author Dinesh Ilindra
 */
public interface IPCHandler {

    void handleMessage(String mesage);

    void handleMessage(JsonNode ipcEvent);

    void handleCommand(String command, String application, String entity, Object... params);

    void handleCommand(String command, String application, String entity, Map params);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy