Package org.openntf.domino.thread

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


import org.openntf.domino.utils.Factory;

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

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


   * @param args
   *            the arguments >>>>>>> origin/declan
   */
  public static void main(final String[] args) {
    DominoThread dt = new DominoThread(new DocCreator(), "Create One Million Docs");
    dt.start();
  }
}
View Full Code Here

   * @param args
   *            the arguments
   */
  public static void main(final String[] args) {
    DominoThread dt = new DominoThread(new DocCreator(), "Create One Million Docs");
    dt.start();
  }

}
View Full Code Here

   * @param args
   *            the arguments >>>>>>> origin/declan
   */
  public static void main(final String[] args) {
    DominoThread dt = new DominoThread(new DocCreator(), "Create One Million Docs");
    dt.start();
  }
}
View Full Code Here

import org.openntf.domino.utils.Factory;

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

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

   * @param args
   *            the arguments >>>>>>> origin/declan
   */
  public static void main(final String[] args) {
    DominoThread dt = new DominoThread(new DocCreator(), "Create One Million Docs");
    dt.start();
  }

}
View Full Code Here

import org.openntf.domino.utils.Factory;

public class DominoIndexDbTest implements Runnable {
  public static void main(final String[] args) {
    DominoThread thread = new DominoThread(new DominoIndexDbTest(), "Index Thread");
    thread.start();
  }

  public DominoIndexDbTest() {
    // 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 DominoAutoboxTest implements Runnable {
  public static void main(final String[] args) {
    DominoThread thread = new DominoThread(new DominoAutoboxTest(), "Index Thread");
    thread.start();
  }

  public DominoAutoboxTest() {
    // 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 DbHandleTest implements Runnable {
  public static void main(final String[] args) {
    DominoThread thread = new DominoThread(new DbHandleTest(), "My thread");
    thread.start();
  }

  public DbHandleTest() {
    // 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 TestRunner extends TestRunnerStdIn {
  public static void main(final String[] args) {
    DominoThread thread = new DominoThread(new TestRunner(), "My thread");
    thread.start();
  }

  public TestRunner() {
    // 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.