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

com.hyf.hotrefresh.remoting.client.ResponseFutureManager Maven / Gradle / Ivy

package com.hyf.hotrefresh.remoting.client;

import com.hyf.hotrefresh.remoting.ResponseFuture;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/**
 * @author baB_hyf
 * @date 2022/10/01
 */
public class ResponseFutureManager {

    private final Map futureTables = new ConcurrentHashMap<>();

    public void put(Integer id, ResponseFuture responseFuture) {
        futureTables.put(id, responseFuture);
    }

    public ResponseFuture get(Integer id) {
        return futureTables.get(id);
    }

    public ResponseFuture remove(Integer id) {
        return futureTables.remove(id);
    }

    public Map getFutureTables() {
        return futureTables;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy