Uses of Class
edu.rit.mp.CharacterBuf
Packages that use CharacterBuf
Package
Description
The MP package provides low-level support for Message Passing.
The BUF package provides data buffers for Message Passing.
-
Uses of CharacterBuf in edu.rit.mp
Methods in edu.rit.mp that return CharacterBufModifier and TypeMethodDescriptionstatic CharacterBufCharacterBuf.buffer(char[] theArray) Create a buffer for the entire given character array.static CharacterBufCharacterBuf.buffer(char[][] theMatrix) Create a buffer for the entire given character matrix.static CharacterBufCharacterBuf.buffer(SharedCharacter item) Create a buffer for a shared character item.static CharacterBufCharacterBuf.buffer(SharedCharacterArray theArray) Create a buffer for the entire given shared character array.static CharacterBufCharacterBuf.colSliceBuffer(char[][] theMatrix, Range theColRange) Create a buffer for one column slice of the given character matrix.static CharacterBuf[]CharacterBuf.colSliceBuffers(char[][] theMatrix, Range[] theColRanges) Create an array of buffers for multiple column slices of the given character matrix.static CharacterBufCharacterBuf.emptyBuffer()Create an empty buffer.static CharacterBufCharacterBuf.patchBuffer(char[][] theMatrix, Range theRowRange, Range theColRange) Create a buffer for one patch of the given character matrix.static CharacterBuf[]CharacterBuf.patchBuffers(char[][] theMatrix, Range[] theRowRanges, Range[] theColRanges) Create an array of buffers for multiple patches of the given character matrix.static CharacterBufCharacterBuf.rowSliceBuffer(char[][] theMatrix, Range theRowRange) Create a buffer for one row slice of the given character matrix.static CharacterBuf[]CharacterBuf.rowSliceBuffers(char[][] theMatrix, Range[] theRowRanges) Create an array of buffers for multiple row slices of the given character matrix.static CharacterBufCharacterBuf.sliceBuffer(char[] theArray, Range theRange) Create a buffer for one slice of the given character array.static CharacterBufCharacterBuf.sliceBuffer(SharedCharacterArray theArray, Range theRange) Create a buffer for one slice of the given shared character array.static CharacterBuf[]CharacterBuf.sliceBuffers(char[] theArray, Range[] theRanges) Create an array of buffers for multiple slices of the given character array.static CharacterBuf[]CharacterBuf.sliceBuffers(SharedCharacterArray theArray, Range[] theRanges) Create an array of buffers for multiple slices of the given shared character array.Methods in edu.rit.mp with parameters of type CharacterBufModifier and TypeMethodDescriptionprotected static voidCharacterBuf.defaultCopy(CharacterBuf theSrc, CharacterBuf theDst) Copy items from the given source buffer to the given destination buffer. -
Uses of CharacterBuf in edu.rit.mp.buf
Subclasses of CharacterBuf in edu.rit.mp.bufModifier and TypeClassDescriptionclassClass CharacterArrayBuf provides a buffer for an array of character items sent or received using the Message Protocol (MP).classClass CharacterArrayBuf_1 provides a buffer for an array of character items sent or received using the Message Protocol (MP).classClass CharacterItemBuf provides a buffer for a single character item sent or received using the Message Protocol (MP).classClass CharacterMatrixBuf provides a buffer for a matrix of character items sent or received using the Message Protocol (MP).classClass CharacterMatrixBuf_1 provides a buffer for a matrix of character items sent or received using the Message Protocol (MP).classClass EmptyCharacterBuf provides a character buffer that contains no items for messages using the Message Protocol (MP).classClass SharedCharacterArrayBuf provides a buffer for a multiple thread safe array of character items sent or received using the Message Protocol (MP).classClass SharedCharacterArrayBuf_1 provides a buffer for a multiple thread safe array of character items sent or received using the Message Protocol (MP).classClass SharedCharacterBuf provides a buffer for a shared character item sent or received using the Message Protocol (MP).