PullQueryable constructor

PullQueryable(
  1. Pointer<Uint8> _queryableHandle,
  2. Pointer<Uint8> _handlerHandle,
  3. Pointer<Uint8> _teeHandle,
  4. ReceivePort _receivePort,
  5. String _keyExpr,
  6. ChannelKind _kind,
)

Internal constructor. Use Session.declarePullQueryable instead.

Implementation

PullQueryable(
  this._queryableHandle,
  this._handlerHandle,
  this._teeHandle,
  this._receivePort,
  this._keyExpr,
  this._kind,
) {
  _receivePort.listen(_onWake);
}