Package jpvm

Examples of jpvm.jpvmException


    return d[0];
  }

  public void unpack(float d[], int n, int stride) throws jpvmException {
    if(curr_elt == null)
      throw new jpvmException("buffer empty, upkfloat.");
    curr_elt.unpack(d,n,stride);
    curr_elt = curr_elt.next;
  }
View Full Code Here


    return d[0];
  }

  public void unpack(double d[], int n, int stride) throws jpvmException {
    if(curr_elt == null)
      throw new jpvmException("buffer empty, upkdouble.");
    curr_elt.unpack(d,n,stride);
    curr_elt = curr_elt.next;
  }
View Full Code Here

  }

  public void unpack(jpvmTaskId d[], int n, int stride)
    throws jpvmException {
    if(curr_elt == null)
      throw new jpvmException("buffer empty, upktid.");
    curr_elt.unpack(d,n,stride);
    curr_elt = curr_elt.next;
  }
View Full Code Here

  }

  public void unpack(Neuron d[], int n, int stride)
    throws jpvmException {
    if(curr_elt == null)
      throw new jpvmException("buffer empty, upktid.");
    curr_elt.unpack(d,n,stride);
    curr_elt = curr_elt.next;
  }
View Full Code Here

  }

  public void unpack(Transmissible d[], int n, int stride)
    throws jpvmException {
    if(curr_elt == null)
      throw new jpvmException("buffer empty, upktid.");
    curr_elt.unpack(d,n,stride);
    curr_elt = curr_elt.next;
  }
View Full Code Here

  }


  public String upkstr() throws jpvmException {
    if(curr_elt == null)
      throw new jpvmException("buffer empty, upkstring.");
    String ret = curr_elt.unpack();
    curr_elt = curr_elt.next;
    return ret;
  }
View Full Code Here

        tmp = tmp.next;
      }
    }
    catch (IOException ioe) {
      jpvmDebug.note("jpvmBuffer, send - i/o exception");
      throw new jpvmException("jpvmBuffer, send - " +
        "i/o exception");
    }
  }
View Full Code Here

        addElt(tmp);
      }
    }
    catch (IOException ioe) {
      jpvmDebug.note("jpvmBuffer, recv - i/o exception");
      throw new jpvmException("jpvmBuffer, recv - " +
        "i/o exception");
    }
  }
View Full Code Here

TOP

Related Classes of jpvm.jpvmException

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.