Communicating Threads for Java

A CSP library for Java

© Copyrights 2000 Gerald H. Hilderink

Deprecated API

Deprecated Classes
csp.lang.Channel_of_Proxy
          The name Proxy is not the best choice. A proxy means more than just a container class holding a reference to an object and a tag variable. We renamed the Proxy class to Reference class, which is more appropriate. See Channel_of_Reference class. The Channel_of_Proxy class provides a communication channel for passing any Proxy objects between processes.

Copyright © 1996-2000 Gerald H. Hilderink. All Rights Reserved. 

csp.lang.Proxy
          The name Proxy is not the best choice. A proxy means more than just a container class holding a reference to an object and a tag variable. We renamed the Proxy class to Reference class, which is more appropriate. See Reference class. The Proxy object is a wrapper object that holds a public Object variable object to store the object and a public int tag variable of store the message type.

The variable tag must be zero or higher ([0, ->]). An undefined tag is marked as UNDEFINED (default).

After writing the object, the reference to this object will be set to null. This prevents sharing the object by more than one processes. This protection in not entirely secure because the sender may hold a copy of the reference and may therefore share the object -- this choice is up to the programmer.

Copyright © 1996-1998 University of Twente. All Rights Reserved. 

 

Deprecated Interfaces
csp.lang.ChannelInput_of_Proxy
          The name Proxy is not the best choice. A proxy means more than just a container class holding a reference to an object and a tag variable. We renamed the Proxy class to Reference class, which is more appropriate. See ChannelInput_of_Reference class. The ChannelInput_of_Proxy interface specifies the read method for reading any Proxy objects from Channel_of_Proxy.

Copyright © 1996-2000 Gerald H. Hilderink. All Rights Reserved. 

csp.lang.ChannelOutput_of_Proxy
          The name Proxy is not the best choice. A proxy means more than just a container class holding a reference to an object and a tag variable. We renamed the Proxy class to Reference class, which is more appropriate. See ChannelOutput_of_Reference class. The ChannelOutput_of_Proxy interface specifies the write method for writing any Proxy objects on Channel_of_Proxy.

Copyright © 1996-2000 Gerald H. Hilderink. All Rights Reserved. 

 

Deprecated Methods
csp.lang.Character.isJavaLetter(char)
          Replaced by isJavaIdentifierStart(char). 
csp.lang.Character.isJavaLetterOrDigit(char)
          Replaced by isJavaIdentifierPart(char). 
csp.lang.Character.isSpace(char)
          Replaced by isWhitespace(char). 
 


Communicating Threads for Java

A CSP library for Java

© Copyrights 2000 Gerald H. Hilderink