subscribeAccountDataStream method
- String key
listen to account data updates
Implementation
Stream<bool> subscribeAccountDataStream(String key) {
final tmp1 = key;
var tmp0 = 0;
var tmp2 = 0;
var tmp3 = 0;
var tmp4 = 0;
tmp0 = _box.borrow();
final tmp1_0 = utf8.encode(tmp1);
tmp3 = tmp1_0.length;
final ffi.Pointer<ffi.Uint8> tmp2_0 = _api.__allocate(tmp3 * 1, 1);
final Uint8List tmp2_1 = tmp2_0.asTypedList(tmp3);
tmp2_1.setAll(0, tmp1_0);
tmp2 = tmp2_0.address;
tmp4 = tmp3;
final tmp5 = _api._clientSubscribeAccountDataStream(tmp0, tmp2, tmp3, tmp4);
final tmp7 = tmp5.arg0;
final tmp8 = tmp5.arg1;
final tmp9 = tmp5.arg2;
final tmp10 = tmp5.arg3;
final tmp11 = tmp5.arg4;
if (tmp7 == 0) {
debugAllocation("handle error", tmp8, tmp9);
final ffi.Pointer<ffi.Uint8> tmp8_0 = ffi.Pointer.fromAddress(tmp8);
final tmp7_0 = utf8.decode(
tmp8_0.asTypedList(tmp9),
allowMalformed: true,
);
if (tmp9 > 0) {
final ffi.Pointer<ffi.Void> tmp8_0;
tmp8_0 = ffi.Pointer.fromAddress(tmp8);
_api.__deallocate(tmp8_0, tmp10, 1);
}
throw tmp7_0;
}
final ffi.Pointer<ffi.Void> tmp11_0 = ffi.Pointer.fromAddress(tmp11);
final tmp11_1 = _Box(
_api,
tmp11_0,
"__Client_subscribe_account_data_stream_stream_drop",
);
tmp11_1._finalizer = _api._registerFinalizer(tmp11_1);
final tmp6 = _nativeStream(
tmp11_1,
_api.__clientSubscribeAccountDataStreamStreamPoll,
);
return tmp6;
}