Package org.apache.ace.agent.impl

Examples of org.apache.ace.agent.impl.AgentContextImpl


        }
        m_contextDir = new File(getWorkDir(), subDir);
        m_contextDir.mkdirs();
        cleanDir(m_contextDir);

        AgentContextImpl context = new AgentContextImpl(m_contextDir);
        for (Class<?> handlerClass : AgentContextImpl.KNOWN_HANDLERS) {
            if (ScheduledExecutorService.class.equals(handlerClass)) {
                // always inject a proper executor service that simply invokes synchronously...
                context.setHandler(ScheduledExecutorService.class, new SynchronousExecutorService());
            }
            else {
                setMockedHandler(context, handlerClass);
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.ace.agent.impl.AgentContextImpl

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.