Sign in
fuchsia
/
reference-docs
/
main
/
.
/
f9
/
sdk
/
dart
/
zircon
/
ChannelReader
/
bind.md
blob: 4b5063be52e69ded6f97e8a5e719bcf2e2ddb3d6 [
file
] [
log
] [
blame
] [
view
]
# bind method
void
bind
([
Channel
](../../
zircon
/
Channel
-
class
.
md
)
channel
)
## Implementation
```dart
void bind(Channel channel) {
if (isBound) {
throw ZirconApiError('ChannelReader is already bound.');
}
_channel = channel;
_asyncWait();
}
```