B C D E F G H I J L M O P R S T U V W

B

BLOCKING_MODE_BLOCKING - Static variable in class com.lts.ipc.fifo.FIFOImpl
 
BLOCKING_MODE_NON_BLOCKING - Static variable in class com.lts.ipc.fifo.FIFOImpl
 
byteBuffer - Variable in class com.lts.ipc.sharedmemory.SharedMemory
 
byteCount - Variable in class com.lts.ipc.fifo.FIFOResult
 
bytesAvailable() - Method in class com.lts.ipc.fifo.FIFOInputStream
 

C

channel - Variable in class com.lts.ipc.sharedmemory.SharedMemory
 
checkFile(File) - Static method in class com.lts.ipc.Utils
Create a file if it does not already exist.
checkFile(String) - Static method in class com.lts.ipc.Utils
 
close() - Method in class com.lts.ipc.fifo.FIFOOutputStream
 
closeNoExceptions(Reader) - Static method in class com.lts.ipc.Utils
 
closeNoExceptions(BufferedReader) - Static method in class com.lts.ipc.Utils
 
closeNoExceptions(InputStream) - Static method in class com.lts.ipc.Utils
 
closeNoExceptions(FileWriter) - Static method in class com.lts.ipc.Utils
 
closeNoExceptions(OutputStream) - Static method in class com.lts.ipc.Utils
 
code - Variable in enum com.lts.ipc.semaphore.SemaphoreResult.Results
 
com.lts.ipc - package com.lts.ipc
A package that supports interprocess communications.
com.lts.ipc.fifo - package com.lts.ipc.fifo
 
com.lts.ipc.semaphore - package com.lts.ipc.semaphore
 
com.lts.ipc.sharedmemory - package com.lts.ipc.sharedmemory
 
connect(String, int, int) - Method in class com.lts.ipc.semaphore.Semaphore
Connect to the underlying operating system resource, creating it if it does not exist.
connect(String, int) - Method in class com.lts.ipc.semaphore.Semaphore
Connect to the underlying semaphore.
connect(SemaphoreResult, String, int) - Static method in class com.lts.ipc.semaphore.SemaphoreNative
Connect to the underlying semaphore, creating it if it does not already exist.
connect(File, int) - Method in class com.lts.ipc.sharedmemory.SharedMemory
Connect this segment to the underlying shared memory segment.
connect(String, int) - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
connected - Variable in class com.lts.ipc.sharedmemory.SharedMemory
 
connectNonBlocking(FIFOResult) - Method in class com.lts.ipc.fifo.FIFOImpl
Connect to the underlying FIFO.
convertResultCode() - Method in class com.lts.ipc.semaphore.SemaphoreResult
 
convertReturnCode(SemaphoreResult) - Method in class com.lts.ipc.semaphore.Semaphore
 
create() - Method in class com.lts.ipc.fifo.FIFO
 
create() - Method in class com.lts.ipc.fifo.FIFOImpl
 
createAndFillWith(int, String) - Static method in class com.lts.ipc.Utils
Create a byte array that is populated with a particular string.
createBuffer(int) - Static method in class com.lts.ipc.IPCPackage
 
createNonBlocking(FIFOResult, String) - Method in class com.lts.ipc.fifo.FIFOImpl
 
createResult(SemaphoreResult, String, int, int) - Static method in class com.lts.ipc.semaphore.SemaphoreNative
 

D

decrement(long) - Method in class com.lts.ipc.semaphore.Semaphore
Try to decrement the semaphore, waiting at least until the specified time to do so if the semaphore is already at 0 or below.
decrement() - Method in class com.lts.ipc.semaphore.Semaphore
Decrement the semaphore by 1, blocking if required.
decrement(SemaphoreResult, long, long) - Static method in class com.lts.ipc.semaphore.SemaphoreNative
Decrease the value of the semaphore by 1 if it is available; if not available wait at least the specified period of time for it to become available.
DEFAULT_BUFFER_SIZE - Static variable in class com.lts.ipc.fifo.FIFO
 
DIRECTION_READER - Static variable in class com.lts.ipc.fifo.FIFOImpl
 
DIRECTION_WRITER - Static variable in class com.lts.ipc.fifo.FIFOImpl
 

E

ERROR_ACCESS_DENIED - Static variable in class com.lts.ipc.fifo.FIFOResult
 
ERROR_CONNECT - Static variable in class com.lts.ipc.fifo.FIFOResult
An attempt to connect to a FIFO failed.
ERROR_INVALID_HANDLE - Static variable in class com.lts.ipc.fifo.FIFOResult
An attempt was made to perform some operation such as listening or writing to a named pipe when the client did not have a valid pipe handle.
ERROR_NOT_FOUND - Static variable in class com.lts.ipc.fifo.FIFOResult
An attempt was made to open a file, but either a component of the path to the file or the file itself does not exist.
ERROR_PIPE_BUSY - Static variable in class com.lts.ipc.fifo.FIFOResult
An attempt was made to connect to a named pipe, but failed because all the instances were already connected to other clients.
ERROR_PIPE_CLOSED - Static variable in class com.lts.ipc.fifo.FIFOResult
 
ERROR_READ - Static variable in class com.lts.ipc.fifo.FIFOResult
A generic problem occurred while trying to read from the FIFO.
ERROR_SELECT - Static variable in class com.lts.ipc.fifo.FIFOResult
An error was encountered while making a call to wait for an IPC mechanism to become ready (e.g., select or WaitForSingleObject).
ERROR_UNKNOWN - Static variable in class com.lts.ipc.fifo.FIFOResult
 
errorCode - Variable in class com.lts.ipc.fifo.FIFOResult
 
errorCode - Variable in class com.lts.ipc.semaphore.SemaphoreResult
 

F

FIFO - Class in com.lts.ipc.fifo
A one-way interprocess communications channel.
FIFO(String) - Constructor for class com.lts.ipc.fifo.FIFO
Create a named pipe with the specified virtual name.
FIFO(String, int) - Constructor for class com.lts.ipc.fifo.FIFO
 
FIFO.BlockingMode - Enum in com.lts.ipc.fifo
 
FIFOImpl - Class in com.lts.ipc.fifo
An internal class that provides the underlying system calls needed to implement named pipes.
FIFOImpl(String) - Constructor for class com.lts.ipc.fifo.FIFOImpl
 
FIFOImpl.PipeDirection - Enum in com.lts.ipc.fifo
The role a client is taking (reader/writer) when using a named pipe.
FIFOInputStream - Class in com.lts.ipc.fifo
 
FIFOInputStream(FIFO) - Constructor for class com.lts.ipc.fifo.FIFOInputStream
 
FIFOInputStream(FIFO, int) - Constructor for class com.lts.ipc.fifo.FIFOInputStream
 
FIFOOutputStream - Class in com.lts.ipc.fifo
 
FIFOOutputStream(FIFO) - Constructor for class com.lts.ipc.fifo.FIFOOutputStream
 
FIFOResult - Class in com.lts.ipc.fifo
An internal class to hold the results of a call to a JNI method.
FIFOResult() - Constructor for class com.lts.ipc.fifo.FIFOResult
 
fillArrayWith(byte[], byte[]) - Static method in class com.lts.ipc.Utils
 
flush() - Method in class com.lts.ipc.fifo.FIFOOutputStream
 
foo() - Static method in enum com.lts.ipc.semaphore.SemaphoreResult.Results
 

G

generateNextActualName() - Static method in class com.lts.ipc.semaphore.Semaphore
 
getActualName() - Method in class com.lts.ipc.fifo.FIFO
 
getActualName() - Method in class com.lts.ipc.fifo.FIFOImpl
 
getActualName() - Method in class com.lts.ipc.semaphore.Semaphore
 
getBlockingMode() - Method in class com.lts.ipc.fifo.FIFO
 
getBufferSize() - Method in class com.lts.ipc.fifo.FIFOImpl
 
getByte(int) - Method in class com.lts.ipc.sharedmemory.SharedMemory
Return the byte at a particular location in the segment.
getByteBuffer() - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
getDirection() - Method in class com.lts.ipc.fifo.FIFO
 
getDirection() - Method in class com.lts.ipc.fifo.FIFOImpl
 
getDirectionInt() - Method in class com.lts.ipc.fifo.FIFOImpl
 
getError() - Method in exception com.lts.ipc.IPCException
 
getHandle() - Method in class com.lts.ipc.fifo.FIFOImpl
 
getHandle() - Method in class com.lts.ipc.semaphore.Semaphore
 
getImpl() - Method in class com.lts.ipc.fifo.FIFO
 
getInputStream(int) - Method in class com.lts.ipc.fifo.FIFO
 
getInputStream() - Method in class com.lts.ipc.fifo.FIFO
 
getLine(int, byte[]) - Method in class com.lts.ipc.sharedmemory.SharedMemory
Retrieve a line of text from the segment.
getLine(int, int) - Method in class com.lts.ipc.sharedmemory.SharedMemory
Return a string from the specified location in the segment; the string may only take the specified number of bytes.
getOutputStream() - Method in class com.lts.ipc.fifo.FIFO
 
getSegmentFile() - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
getSize() - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
getTimeoutMsec() - Method in class com.lts.ipc.fifo.FIFO
 
getValue(SemaphoreResult, long) - Static method in class com.lts.ipc.semaphore.SemaphoreNative
Gets the current value of the semaphore.
getVirtualName() - Method in class com.lts.ipc.fifo.FIFO
 
getVirtualName() - Method in class com.lts.ipc.fifo.FIFOImpl
 

H

handle - Variable in class com.lts.ipc.fifo.FIFOResult
 
handle - Variable in class com.lts.ipc.semaphore.SemaphoreResult
 

I

increment() - Method in class com.lts.ipc.semaphore.Semaphore
Increment the value of the semaphore.
increment(SemaphoreResult, long) - Static method in class com.lts.ipc.semaphore.SemaphoreNative
Increase the value of the semaphore by 1.
initialize(String) - Method in class com.lts.ipc.fifo.FIFO
 
initialize(String) - Method in class com.lts.ipc.fifo.FIFOImpl
 
initialize(FIFO, int) - Method in class com.lts.ipc.fifo.FIFOInputStream
 
initialize(FIFO) - Method in class com.lts.ipc.fifo.FIFOOutputStream
 
initializeNative() - Static method in class com.lts.ipc.IPCPackage
 
initializePackage() - Static method in class com.lts.ipc.IPCPackage
 
IPCException - Exception in com.lts.ipc
A problem occurred while trying to use an IPC mechanism.
IPCException() - Constructor for exception com.lts.ipc.IPCException
 
IPCException(String) - Constructor for exception com.lts.ipc.IPCException
 
IPCException(Throwable) - Constructor for exception com.lts.ipc.IPCException
 
IPCException(String, Throwable) - Constructor for exception com.lts.ipc.IPCException
 
IPCException(IPCException.Errors) - Constructor for exception com.lts.ipc.IPCException
 
IPCException(IPCException.Errors, Throwable) - Constructor for exception com.lts.ipc.IPCException
 
IPCException.Errors - Enum in com.lts.ipc
 
IPCPackage - Class in com.lts.ipc
 
IPCPackage() - Constructor for class com.lts.ipc.IPCPackage
 
isConnected() - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
isCreator() - Method in class com.lts.ipc.fifo.FIFOImpl
 
isEndOfFile() - Method in class com.lts.ipc.fifo.FIFOInputStream
 
isFileCreator() - Method in class com.lts.ipc.sharedmemory.SharedMemory
 

J

jniValue - Variable in enum com.lts.ipc.fifo.FIFOImpl.PipeDirection
 

L

LIBRARY_NAME - Static variable in class com.lts.ipc.IPCPackage
 
linkTest() - Static method in class com.lts.ipc.semaphore.SemaphoreNative
 
listProperties() - Static method in class com.lts.ipc.Utils
 
loadBuffer() - Method in class com.lts.ipc.fifo.FIFOInputStream
 
lock() - Method in class com.lts.ipc.sharedmemory.SharedMemory
Reserve the shared memory segment.

M

matchIgnoreCase(Object[], String) - Static method in class com.lts.ipc.Utils
 
message - Variable in enum com.lts.ipc.IPCException.Errors
 
message - Variable in enum com.lts.ipc.semaphore.SemaphoreResult.Results
 
MSG_ALREADY_CONNECTED - Static variable in exception com.lts.ipc.IPCException
 
MSG_DOES_NOT_EXIST - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
MSG_ERROR_CREATING_MAP - Static variable in exception com.lts.ipc.IPCException
 
MSG_ERROR_OPENING_MAPPING_FILE - Static variable in exception com.lts.ipc.IPCException
 
MSG_EXCEPTION_CREATING_FILE - Static variable in exception com.lts.ipc.IPCException
 
MSG_INSUFFICIENT_PERMISSIONS - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
MSG_NOT_CONNECTED - Static variable in exception com.lts.ipc.IPCException
 
MSG_PERMISSIONS - Static variable in exception com.lts.ipc.IPCException
 
MSG_SUCCESS - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
MSG_TIMEOUT - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
MSG_UNKNOWN - Static variable in exception com.lts.ipc.IPCException
 
MSG_UNKNOWN_ERROR - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
MSG_UNKNOWN_HANDLE - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
myHandle - Variable in class com.lts.ipc.semaphore.Semaphore
The underlying operating system handle for the semaphore.

O

open(FIFOImpl.PipeDirection) - Method in class com.lts.ipc.fifo.FIFO
Open the named pipe, taking on the role of reader or writer.
open(FIFOImpl.PipeDirection) - Method in class com.lts.ipc.fifo.FIFOImpl
 
openReader() - Method in class com.lts.ipc.fifo.FIFO
Connect to the named pipe, taking on the role of reader.
openWriter() - Method in class com.lts.ipc.fifo.FIFO
Connect to the named pipe, taking on the role of writer.
ourSupportsGetValue - Static variable in class com.lts.ipc.semaphore.SemaphoreNative
Does this particular native implementation support getting a semaphore's value?
ourSupportsSetValue - Static variable in class com.lts.ipc.semaphore.SemaphoreNative
Does this particular native implementation support setting a semaphore's value other than calling decrement methods?

P

printEnv() - Static method in class com.lts.ipc.Utils
 
put(int, byte[]) - Method in class com.lts.ipc.sharedmemory.SharedMemory
Put some data at a location.
putLine(int, String) - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
putString(int, String) - Method in class com.lts.ipc.sharedmemory.SharedMemory
 

R

read(byte[]) - Method in class com.lts.ipc.fifo.FIFO
Read from the named pipe, blocking until data becomes available.
read(byte[], int, int) - Method in class com.lts.ipc.fifo.FIFO
Read some data from the named pipe, blocking if the data is not available.
read(byte[], int, int) - Method in class com.lts.ipc.fifo.FIFOImpl
 
read(byte[], int, int, int) - Method in class com.lts.ipc.fifo.FIFOImpl
 
read() - Method in class com.lts.ipc.fifo.FIFOInputStream
 
read(byte[], int, int) - Method in class com.lts.ipc.fifo.FIFOInputStream
 
read(int, byte[], int, int) - Method in class com.lts.ipc.sharedmemory.SharedMemory
Read bytes up to a specified number of bytes into the provided buffer.
read(byte[], int) - Method in class com.lts.ipc.sharedmemory.SharedMemory
Read bytes from the segment into a buffer, storing them in a location offset from the start of the buffer.
read(byte[]) - Method in class com.lts.ipc.sharedmemory.SharedMemory
Read bytes from the start of the segment.
read(int, byte[]) - Method in class com.lts.ipc.sharedmemory.SharedMemory
Read in data from the segment, starting at a particular location in the segment.
readActualName(String) - Method in class com.lts.ipc.fifo.FIFO
 
readFile(File) - Static method in class com.lts.ipc.Utils
 
readFile(String) - Static method in class com.lts.ipc.Utils
 
readNonBlocking(FIFOResult, byte[], int, int, int) - Method in class com.lts.ipc.fifo.FIFOImpl
 
readOrCreate(File, String) - Static method in class com.lts.ipc.Utils
Read or create a file.
readOrCreate(String, String) - Static method in class com.lts.ipc.Utils
 
result - Variable in class com.lts.ipc.semaphore.SemaphoreResult
 
RESULT_ACCESS_DENIED - Static variable in class com.lts.ipc.semaphore.SemaphoreNative
Access to the semaphore was denied when a particular operation was attempted.
RESULT_DOES_NOT_EXIST - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
RESULT_INSUFFICIENT_PERMISSIONS - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
RESULT_NOT_IMPLEMENTED - Static variable in class com.lts.ipc.semaphore.SemaphoreNative
The requested method is not implemented by the native layer.
RESULT_PLATFORM_ERROR - Static variable in class com.lts.ipc.semaphore.SemaphoreNative
The semaphore operation failed for a reason that is specific to the platform.
RESULT_SUCCESS - Static variable in class com.lts.ipc.semaphore.SemaphoreNative
Native routines should return this to signal that the routine executed without problems.
RESULT_SUCCESS - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
RESULT_TIMEOUT - Static variable in class com.lts.ipc.semaphore.SemaphoreNative
A value returned by the decrement method to signal that the method failed because the semaphore value was less than 1 and the specified timeout elapsed.
RESULT_TIMEOUT - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
RESULT_TOO_MANY_INCREMENTS - Static variable in class com.lts.ipc.semaphore.SemaphoreNative
The semaphore has been incremented too many times.
RESULT_UNKNOWN_ERROR - Static variable in class com.lts.ipc.semaphore.SemaphoreNative
The semaphore operation failed for an unanticipated reason.
RESULT_UNKNOWN_ERROR - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
RESULT_UNKNOWN_HANDLE - Static variable in class com.lts.ipc.semaphore.SemaphoreNative
The semaphore operation failed because the native platform does not recognize the handle used.
RESULT_UNKNOWN_HANDLE - Static variable in class com.lts.ipc.semaphore.SemaphoreResult
 
resultCode - Variable in class com.lts.ipc.fifo.FIFOResult
 
resultCode - Variable in class com.lts.ipc.semaphore.SemaphoreResult
 

S

segmentFile - Variable in class com.lts.ipc.sharedmemory.SharedMemory
 
select(FIFOResult, int) - Method in class com.lts.ipc.fifo.FIFOImpl
Determine if the FIFO is ready for reading, writing, or both.
SELECT_BOTH - Static variable in class com.lts.ipc.fifo.FIFOImpl
 
SELECT_READING - Static variable in class com.lts.ipc.fifo.FIFOImpl
 
SELECT_WRITING - Static variable in class com.lts.ipc.fifo.FIFOImpl
 
selectForWriting(int) - Method in class com.lts.ipc.fifo.FIFO
 
Semaphore - Class in com.lts.ipc.semaphore
An inter-process, n-ary semaphore.
Semaphore() - Constructor for class com.lts.ipc.semaphore.Semaphore
Create a semaphore without actually doing anything at the operating system level.
Semaphore(String) - Constructor for class com.lts.ipc.semaphore.Semaphore
 
Semaphore(String, int) - Constructor for class com.lts.ipc.semaphore.Semaphore
Create a semaphore and attach to the underlying operating system construct.
SemaphoreNative - Class in com.lts.ipc.semaphore
An internal class that provides an interface into the system for implementing semaphores.
SemaphoreNative() - Constructor for class com.lts.ipc.semaphore.SemaphoreNative
 
SemaphoreResult - Class in com.lts.ipc.semaphore
An internal class that contains the results from a native system call.
SemaphoreResult() - Constructor for class com.lts.ipc.semaphore.SemaphoreResult
 
SemaphoreResult.Results - Enum in com.lts.ipc.semaphore
 
server - Variable in class com.lts.ipc.fifo.FIFOResult
Is the FIFO a server?
setActualName(String) - Method in class com.lts.ipc.fifo.FIFOImpl
 
setActualName(String) - Method in class com.lts.ipc.semaphore.Semaphore
 
setBlockingMode(FIFO.BlockingMode) - Method in class com.lts.ipc.fifo.FIFO
 
setBufferSize(int) - Method in class com.lts.ipc.fifo.FIFOImpl
 
setByteBuffer(MappedByteBuffer) - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
setCreator(boolean) - Method in class com.lts.ipc.fifo.FIFOImpl
 
setDirection(FIFOImpl.PipeDirection) - Method in class com.lts.ipc.fifo.FIFO
 
setDirection(FIFOImpl.PipeDirection) - Method in class com.lts.ipc.fifo.FIFOImpl
 
setEndOfFile(boolean) - Method in class com.lts.ipc.fifo.FIFOInputStream
 
setError(IPCException.Errors) - Method in exception com.lts.ipc.IPCException
 
setFileCreator(boolean) - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
setHandle(long) - Method in class com.lts.ipc.fifo.FIFOImpl
 
setHandle(long) - Method in class com.lts.ipc.semaphore.Semaphore
 
setImpl(FIFOImpl) - Method in class com.lts.ipc.fifo.FIFO
 
setTimeoutMsec(int) - Method in class com.lts.ipc.fifo.FIFO
 
setValue(byte[]) - Static method in class com.lts.ipc.IPCPackage
 
setValue(SemaphoreResult, long, int) - Static method in class com.lts.ipc.semaphore.SemaphoreNative
Set the value of the semaphore, without regards to other processes.
setVirtualName(String) - Method in class com.lts.ipc.fifo.FIFOImpl
 
SharedMemory - Class in com.lts.ipc.sharedmemory
A shared memory segment.
SharedMemory() - Constructor for class com.lts.ipc.sharedmemory.SharedMemory
 
SharedMemory(File, int) - Constructor for class com.lts.ipc.sharedmemory.SharedMemory
 
SharedMemory(String, int) - Constructor for class com.lts.ipc.sharedmemory.SharedMemory
 
size - Variable in class com.lts.ipc.sharedmemory.SharedMemory
 
SUCCESS - Static variable in class com.lts.ipc.fifo.FIFOResult
 
supportsGetValue() - Static method in class com.lts.ipc.semaphore.SemaphoreNative
 
supportsSetValue() - Static method in class com.lts.ipc.semaphore.SemaphoreNative
 
syncObject - Variable in class com.lts.ipc.fifo.FIFOResult
A windows-specific object required when using non-blocking FIFOs.

T

TIMEOUT - Static variable in class com.lts.ipc.fifo.FIFOResult
Timeout while waiting for something.
toActualName(String) - Static method in class com.lts.ipc.fifo.FIFOImpl
Return a name that the underlying OS can use for a named pipe, given a string that is more or less unique.
toMilliseconds(long, long) - Static method in class com.lts.ipc.Utils
 
toNanoseconds(long, long) - Static method in class com.lts.ipc.Utils
 
toResult(int) - Static method in enum com.lts.ipc.semaphore.SemaphoreResult.Results
 
toValueIgnoreCase(String) - Static method in enum com.lts.ipc.fifo.FIFO.BlockingMode
 
toValueIgnoreCase(Object[], String) - Static method in class com.lts.ipc.Utils
Find the enum tag that matches a string without regards to case.

U

unlock() - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
Utils - Class in com.lts.ipc
An internal class that provides utility methods common to IPC classes.
Utils() - Constructor for class com.lts.ipc.Utils
 

V

valueOf(String) - Static method in enum com.lts.ipc.fifo.FIFO.BlockingMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.lts.ipc.fifo.FIFOImpl.PipeDirection
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.lts.ipc.IPCException.Errors
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.lts.ipc.semaphore.SemaphoreResult.Results
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.lts.ipc.fifo.FIFO.BlockingMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.lts.ipc.fifo.FIFOImpl.PipeDirection
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.lts.ipc.IPCException.Errors
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.lts.ipc.semaphore.SemaphoreResult.Results
Returns an array containing the constants of this enum type, in the order they are declared.

W

write(byte[]) - Method in class com.lts.ipc.fifo.FIFO
Write some data to the named pipe.
write(byte[], int, int) - Method in class com.lts.ipc.fifo.FIFO
Write some data to the named pipe.
write(byte[], int, int, int) - Method in class com.lts.ipc.fifo.FIFOImpl
Try to write a buffer of data within the specified time frame.
write(int) - Method in class com.lts.ipc.fifo.FIFOOutputStream
 
write(byte[], int, int, int) - Method in class com.lts.ipc.sharedmemory.SharedMemory
Write an array of bytes into a specified location in the segment, starting with a particular byte in the buffer and continuing for a specified number of bytes.
write(byte, int) - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
write(byte[]) - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
write(int, int) - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
write(byte[], int) - Method in class com.lts.ipc.sharedmemory.SharedMemory
 
writeFile(File, String) - Static method in class com.lts.ipc.Utils
 
writeFile(String, String) - Static method in class com.lts.ipc.Utils
 
writeNonBlocking(FIFOResult, byte[], int, int, int) - Method in class com.lts.ipc.fifo.FIFOImpl
 

B C D E F G H I J L M O P R S T U V W