public class BlackHoleChannel extends Object implements ChannelOutput
ChannelOutput with black hole semantics.
ChannelOutput that yields
black hole semantics for the channel. Writers may always write but there can be
no readers. Any number of writers may share the same black hole.
Note: BlackHoleChannels are used for masking off unwanted outputs from processes. They are useful when we want to reuse an existing process component intact, but don't need some of its output channels (i.e. we don't want to redesign and reimplement the component to remove the redundant channels). Normal channels cannot be plugged in and left dangling as this may deadlock (parts of) the component being reused.
ChannelOutput,
One2OneChannel,
Any2OneChannel,
One2AnyChannel,
Any2AnyChannel| Constructor and Description |
|---|
BlackHoleChannel() |
public void write(Object object)
write in interface ChannelOutputobject - the object to write to the channel.public void poison(int strength)
Poisonablepoison in interface Poisonablestrength - the strength of the poison (must be >= 0).Submit a bug or feature to jcsp-team@kent.ac.uk
Version 1.1-rc4 of the JCSP API Specification (Copyright 1997-2008 P.D.Austin and P.H.Welch - All Rights Reserved)
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.