Package org.ggf.drmaa

Examples of org.ggf.drmaa.SessionFactory


import org.ggf.drmaa.Session;
import org.ggf.drmaa.SessionFactory;

public class Howto1_1 {
   public static void main(String[] args) {
      SessionFactory factory = SessionFactory.getFactory();
      Session session = factory.getSession();

      try {
         session.init("");
         String contact = session.getContact();
         session.exit();
View Full Code Here

TOP

Related Classes of org.ggf.drmaa.SessionFactory

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.