Package org.openntf.domino.thread

Examples of org.openntf.domino.thread.DominoThread


import org.openntf.domino.utils.DominoUtils;
import org.openntf.domino.utils.Factory;

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


import org.openntf.domino.utils.DominoUtils;
import org.openntf.domino.utils.Factory;

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

import org.openntf.domino.utils.DominoUtils;
import org.openntf.domino.utils.Factory;

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

import org.openntf.domino.utils.DominoUtils;
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();
  }
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.DominoUtils;
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();
  }
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.DominoUtils;
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();
  }
View Full Code Here

import org.openntf.domino.utils.DominoUtils;
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();
  }
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.