Uses of Class
edu.rit.pj.CommStatus

Packages that use CommStatus
Package
Description
The PJ package (Parallel Java) support shared memory, message passing and hybrid shared memory/message passing parallelization in pure Java.
  • Uses of CommStatus in edu.rit.pj

    Methods in edu.rit.pj that return CommStatus
    Modifier and Type
    Method
    Description
    Comm.floodReceive(Buf buffer)
    Flood-receive a message from any process in this communicator.
    Comm.floodReceive(Integer tag, Buf buffer)
    Flood-receive a message from any process in this communicator with the given message tag.
    Comm.receive(Integer fromRank, int tag, Buf buffer)
    Receive a message from the process at the given rank in this communicator with the given message tag.
    Comm.receive(Integer fromRank, Buf buffer)
    Receive a message from the process at the given rank in this communicator.
    Comm.receive(Integer fromRank, Range tagRange, Buf buffer)
    Receive a message from the process at the given rank in this communicator with the given message tag range.
    Comm.sendReceive(int toRank, int sendTag, Buf sendBuf, int fromRank, int recvTag, Buf recvBuf)
    Send a message to the process at the given rank in this communicator with the given message tag, and receive a message from the process at the given rank in this communicator with the given message tag.
    Comm.sendReceive(int toRank, Buf sendBuf, int fromRank, Buf recvBuf)
    Send a message to the process at the given rank in this communicator, and receive a message from the process at the given rank in this communicator.
    CommRequest.waitForFinish()
    Wait for the message passing operation associated with this CommRequest object to finish.