launcher/src/main/java/org/apidesign/bck2brwsr/launcher/MethodInvocation.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 23 Dec 2012 18:24:18 +0100
branchlauncher
changeset 371 bafc670aa10d
parent 370 ed48023d1d85
child 385 2a00bdf753bb
permissions -rw-r--r--
Separating initialization and method execution on HTTP launcher as well
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.launcher;
    19 
    20 import java.util.concurrent.CountDownLatch;
    21 import java.util.concurrent.TimeUnit;
    22 
    23 /**
    24  *
    25  * @author Jaroslav Tulach <jtulach@netbeans.org>
    26  */
    27 public final class MethodInvocation {
    28     final CountDownLatch wait = new CountDownLatch(1);
    29     final String className;
    30     final String methodName;
    31     private String result;
    32     private Exception exception;
    33 
    34     MethodInvocation(String className, String methodName) {
    35         this.className = className;
    36         this.methodName = methodName;
    37     }
    38     
    39     void await(long timeOut) throws InterruptedException {
    40         wait.await(timeOut, TimeUnit.MILLISECONDS);
    41     }
    42     
    43     void result(String r, Exception e) {
    44         this.result = r;
    45         this.exception = e;
    46         wait.countDown();
    47     }
    48 
    49     @Override
    50     public String toString() {
    51         if (exception != null) {
    52             return exception.toString();
    53         }
    54         return result;
    55     }
    56     
    57 }