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

io.vertx.up.runtime.ZeroCodex Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.up.runtime;

import io.vertx.core.json.JsonObject;

import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

public class ZeroCodex {

    private static final ConcurrentMap CODEX =
            new ConcurrentHashMap<>();

    public static ConcurrentMap getCodex() {
        return CODEX;
    }

    public static JsonObject getCodex(final String key) {
        return CODEX.get(key);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy