Package org.openntf.domino.thread

Examples of org.openntf.domino.thread.DominoThread.start()


*
*/
public class LMBCSPayload implements Runnable {
  public static void main(final String[] args) {
    DominoThread thread = new DominoThread(new LMBCSPayload(), "My thread");
    thread.start();
  }

  public LMBCSPayload() {
    // whatever you might want to do in your constructor, but stay away from Domino objects
  }
View Full Code Here


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();
  }

  public TestRunnerStdIn() {
    // whatever you might want to do in your constructor, but stay away from Domino objects
  }
View Full Code Here

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();
  }

  public SimpleTest() {
    // whatever you might want to do in your constructor, but stay away from Domino objects
  }
View Full Code Here

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();
  }

  public PrintFunctionSet() {
    // whatever you might want to do in your constructor, but stay away from Domino objects
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.