1 package org.smartcomps.twister.engine;
2
3 import org.smartcomps.twister.engine.priv.TwisterEngineImpl;
4
5 /***
6 * A factory to obtain a direct Twister Engine instance or an
7 * asynchronous proxy to an engine instance.
8 */
9 public class TwisterEngineFactory {
10
11 private static TwisterEngineImpl instance = null;
12
13 public static TwisterEngine getEngine() {
14 if (instance == null) {
15 instance = new TwisterEngineImpl();
16 }
17 return instance;
18 }
19
20 }
This page was automatically generated by Maven