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

io.deephaven.server.console.ScriptSessionCacheInit Maven / Gradle / Ivy

The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.server.console;

import io.deephaven.engine.util.AbstractScriptSession;

import javax.inject.Inject;
import javax.inject.Singleton;

@Singleton
public class ScriptSessionCacheInit {

    @Inject
    public ScriptSessionCacheInit() {
        // create the script cache (or clear previous sessions)
        AbstractScriptSession.createScriptCache();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy