interface CanOpen
Interface CanOpen specifies that a class can be opened. This operation is usually applied to files, streams, network connections, and similar I/O abstractions.
| Modifiers | Return Types | Method and Description |
|---|---|---|
public |
() |
open()Method called to open the I/O stream. |
public |
() |
open(int mode)Method called to open the I/O stream with a specific mode. |
| Modifiers | Return Types | Method and Description |
|---|---|---|
public get |
(boolean) |
isOpen()Method called to determine whether the I/O stream is already open. |
public open() => ()
Method called to open the I/O stream.
public get isOpen() => (boolean)
Method called to determine whether the I/O stream is already open.