Package org.jruby.ext.thread_safe

Examples of org.jruby.ext.thread_safe.JRubyCacheBackendLibrary


import org.jruby.runtime.load.BasicLibraryService;

// can't name this JRubyCacheBackendService or else JRuby doesn't pick this up
public class JrubyCacheBackendService implements BasicLibraryService {
    public boolean basicLoad(final Ruby runtime) throws IOException {
        new JRubyCacheBackendLibrary().load(runtime, false);
        return true;
    }
View Full Code Here

TOP

Related Classes of org.jruby.ext.thread_safe.JRubyCacheBackendLibrary

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.