mpi
Class Prequest

java.lang.Object
  extended by mpi.Request
      extended by mpi.Prequest

public abstract class Prequest
extends Request


Method Summary
abstract  void Start()
          Activate a persistent communication request.
static void Startall(Prequest[] prequests)
          Activate a list of communication requests.
 
Methods inherited from class mpi.Request
Cancel, Free, Get_status, Is_null, Test, Testall, Testany, Testsome, Wait, Waitall, Waitany, Waitsome
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

Start

public abstract void Start()
                    throws MPIException
Activate a persistent communication request.

Java binding of the MPI operation MPI_START.

A communication started with a call to Start or Startall is completed by a call to Request.Wait, Request.Test, or one of the derived functions. On successful completion the request becomes inactive again. It can be reactivated by a further call to Start.

Throws:
MPIException

Startall

public static void Startall(Prequest[] prequests)
                     throws MPIException
Activate a list of communication requests.

prequests array of persistent communication requests

Java binding of the MPI operation MPI_STARTALL.

Throws:
MPIException