pipe class : pipe(string) fitter
Description
Get a new instance of pipe class.
Syntax
new pipe(string channelName)
Arguments
Class | Name | Description |
string | channelName | Channel name. |
Return value
Class | Description |
pipe | A new instance of pipe class. This instance has been initialized. |
Sample code
1: | pipe p = new pipe("newchannel"); |
Notes
Creates an instance and opens a new channel with the specified channel name.
If a channel with the specified channel name already exists, an exception will occur.
Links for reference
None.