Package org.openntf.domino.thread

Examples of org.openntf.domino.thread.DominoThread


import org.openntf.domino.thread.DominoThread;
import org.openntf.domino.utils.Factory;

public class DbHandleTest implements Runnable {
  public static void main(final String[] args) {
    DominoThread thread = new DominoThread(new DbHandleTest(), "My thread");
    thread.start();
  }
View Full Code Here


import org.openntf.formula.Formulas;
import org.openntf.formula.Function;

public class TestRunner extends TestRunnerStdIn {
  public static void main(final String[] args) {
    DominoThread thread = new DominoThread(new TestRunner(), "My thread");
    thread.start();
  }
View Full Code Here

* @author Manfred Steinsiek, Foconis AG
*
*/
public class LMBCSPayload implements Runnable {
  public static void main(final String[] args) {
    DominoThread thread = new DominoThread(new LMBCSPayload(), "My thread");
    thread.start();
  }
View Full Code Here

import org.openntf.formula.FormulaParser;
import org.openntf.formula.Formulas;

public class TestRunnerStdIn implements Runnable {
  public static void main(final String[] args) {
    DominoThread thread = new DominoThread(new TestRunnerStdIn(), "My thread");
    thread.start();
  }
View Full Code Here

import org.openntf.domino.thread.DominoThread;
import org.openntf.domino.utils.Factory;

public class SimpleTest implements Runnable {
  public static void main(final String[] args) {
    DominoThread thread = new DominoThread(new SimpleTest(), "My thread");
    thread.start();
  }
View Full Code Here

import org.openntf.formula.Formulas;
import org.openntf.formula.Function;

public class PrintFunctionSet extends TestRunnerStdIn {
  public static void main(final String[] args) {
    DominoThread thread = new DominoThread(new PrintFunctionSet(), "My thread");
    thread.start();
  }
View Full Code Here

TOP

Related Classes of org.openntf.domino.thread.DominoThread

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.