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

com.plumelog.core.AbstractClient Maven / Gradle / Ivy

There is a newer version: 3.5.3
Show newest version
package com.plumelog.core;

import com.plumelog.core.exception.LogQueueConnectException;
import javafx.fxml.LoadException;

import java.util.List;

/**
 * className:AbstractClient
 * description: TODO
 * time:2020-05-13.11:47
 *
 * @author Tank
 * @version 1.0.0
 */
public abstract class AbstractClient {

    private static AbstractClient client;

    public void pushMessage(String key, String strings) throws LogQueueConnectException {
    }

    public static AbstractClient getClient() {
        return client;
    }

    public static void setClient(AbstractClient abstractClient) {
        client = abstractClient;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy