mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2025-12-23 17:04:25 +01:00
Add shutdown signal (#238)
* Add shutdown signal handling Revert periodic sync interval change Revert keep-alive interval change CLI: Add disconnect command SDK: Add scaffolding for is_started, shutdown() Simplify instance init * Rebase on savage-async-ws branch * Avoid waiting when shutdown signal is received in the sync loop * Directly use shutdown signal in background threads * Acquire is_started lock at the very beginning of start() * Fix cargo clippy warnings * Update RN generator (kt): set bindingLiquidSdk to null on disconnect() * Update RN generator (swift): set bindingLiquidSdk to nil on disconnect() * Startup: only run foreground sync() if this could be the first run * Start a sync() in background, before regular sync() loop * Remove ensure_started check from start() * Add bindings for disconnect() * Remove foreground sync condition from startup * Simplify background sync loop
This commit is contained in:
@@ -15,19 +15,12 @@ final _privateConstructorUsedError = UnsupportedError(
|
||||
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');
|
||||
|
||||
/// @nodoc
|
||||
mixin _$LiquidSdkError {
|
||||
String get err => throw _privateConstructorUsedError;
|
||||
|
||||
@JsonKey(ignore: true)
|
||||
$LiquidSdkErrorCopyWith<LiquidSdkError> get copyWith => throw _privateConstructorUsedError;
|
||||
}
|
||||
mixin _$LiquidSdkError {}
|
||||
|
||||
/// @nodoc
|
||||
abstract class $LiquidSdkErrorCopyWith<$Res> {
|
||||
factory $LiquidSdkErrorCopyWith(LiquidSdkError value, $Res Function(LiquidSdkError) then) =
|
||||
_$LiquidSdkErrorCopyWithImpl<$Res, LiquidSdkError>;
|
||||
@useResult
|
||||
$Res call({String err});
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
@@ -39,27 +32,54 @@ class _$LiquidSdkErrorCopyWithImpl<$Res, $Val extends LiquidSdkError>
|
||||
final $Val _value;
|
||||
// ignore: unused_field
|
||||
final $Res Function($Val) _then;
|
||||
|
||||
@pragma('vm:prefer-inline')
|
||||
@override
|
||||
$Res call({
|
||||
Object? err = null,
|
||||
}) {
|
||||
return _then(_value.copyWith(
|
||||
err: null == err
|
||||
? _value.err
|
||||
: err // ignore: cast_nullable_to_non_nullable
|
||||
as String,
|
||||
) as $Val);
|
||||
}
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract class _$$LiquidSdkError_GenericImplCopyWith<$Res> implements $LiquidSdkErrorCopyWith<$Res> {
|
||||
abstract class _$$LiquidSdkError_AlreadyStartedImplCopyWith<$Res> {
|
||||
factory _$$LiquidSdkError_AlreadyStartedImplCopyWith(_$LiquidSdkError_AlreadyStartedImpl value,
|
||||
$Res Function(_$LiquidSdkError_AlreadyStartedImpl) then) =
|
||||
__$$LiquidSdkError_AlreadyStartedImplCopyWithImpl<$Res>;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
class __$$LiquidSdkError_AlreadyStartedImplCopyWithImpl<$Res>
|
||||
extends _$LiquidSdkErrorCopyWithImpl<$Res, _$LiquidSdkError_AlreadyStartedImpl>
|
||||
implements _$$LiquidSdkError_AlreadyStartedImplCopyWith<$Res> {
|
||||
__$$LiquidSdkError_AlreadyStartedImplCopyWithImpl(
|
||||
_$LiquidSdkError_AlreadyStartedImpl _value, $Res Function(_$LiquidSdkError_AlreadyStartedImpl) _then)
|
||||
: super(_value, _then);
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
|
||||
class _$LiquidSdkError_AlreadyStartedImpl extends LiquidSdkError_AlreadyStarted {
|
||||
const _$LiquidSdkError_AlreadyStartedImpl() : super._();
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'LiquidSdkError.alreadyStarted()';
|
||||
}
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) {
|
||||
return identical(this, other) ||
|
||||
(other.runtimeType == runtimeType && other is _$LiquidSdkError_AlreadyStartedImpl);
|
||||
}
|
||||
|
||||
@override
|
||||
int get hashCode => runtimeType.hashCode;
|
||||
}
|
||||
|
||||
abstract class LiquidSdkError_AlreadyStarted extends LiquidSdkError {
|
||||
const factory LiquidSdkError_AlreadyStarted() = _$LiquidSdkError_AlreadyStartedImpl;
|
||||
const LiquidSdkError_AlreadyStarted._() : super._();
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract class _$$LiquidSdkError_GenericImplCopyWith<$Res> {
|
||||
factory _$$LiquidSdkError_GenericImplCopyWith(
|
||||
_$LiquidSdkError_GenericImpl value, $Res Function(_$LiquidSdkError_GenericImpl) then) =
|
||||
__$$LiquidSdkError_GenericImplCopyWithImpl<$Res>;
|
||||
@override
|
||||
@useResult
|
||||
$Res call({String err});
|
||||
}
|
||||
@@ -121,14 +141,53 @@ abstract class LiquidSdkError_Generic extends LiquidSdkError {
|
||||
const factory LiquidSdkError_Generic({required final String err}) = _$LiquidSdkError_GenericImpl;
|
||||
const LiquidSdkError_Generic._() : super._();
|
||||
|
||||
@override
|
||||
String get err;
|
||||
@override
|
||||
@JsonKey(ignore: true)
|
||||
_$$LiquidSdkError_GenericImplCopyWith<_$LiquidSdkError_GenericImpl> get copyWith =>
|
||||
throw _privateConstructorUsedError;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
abstract class _$$LiquidSdkError_NotStartedImplCopyWith<$Res> {
|
||||
factory _$$LiquidSdkError_NotStartedImplCopyWith(
|
||||
_$LiquidSdkError_NotStartedImpl value, $Res Function(_$LiquidSdkError_NotStartedImpl) then) =
|
||||
__$$LiquidSdkError_NotStartedImplCopyWithImpl<$Res>;
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
class __$$LiquidSdkError_NotStartedImplCopyWithImpl<$Res>
|
||||
extends _$LiquidSdkErrorCopyWithImpl<$Res, _$LiquidSdkError_NotStartedImpl>
|
||||
implements _$$LiquidSdkError_NotStartedImplCopyWith<$Res> {
|
||||
__$$LiquidSdkError_NotStartedImplCopyWithImpl(
|
||||
_$LiquidSdkError_NotStartedImpl _value, $Res Function(_$LiquidSdkError_NotStartedImpl) _then)
|
||||
: super(_value, _then);
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
|
||||
class _$LiquidSdkError_NotStartedImpl extends LiquidSdkError_NotStarted {
|
||||
const _$LiquidSdkError_NotStartedImpl() : super._();
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return 'LiquidSdkError.notStarted()';
|
||||
}
|
||||
|
||||
@override
|
||||
bool operator ==(Object other) {
|
||||
return identical(this, other) ||
|
||||
(other.runtimeType == runtimeType && other is _$LiquidSdkError_NotStartedImpl);
|
||||
}
|
||||
|
||||
@override
|
||||
int get hashCode => runtimeType.hashCode;
|
||||
}
|
||||
|
||||
abstract class LiquidSdkError_NotStarted extends LiquidSdkError {
|
||||
const factory LiquidSdkError_NotStarted() = _$LiquidSdkError_NotStartedImpl;
|
||||
const LiquidSdkError_NotStarted._() : super._();
|
||||
}
|
||||
|
||||
/// @nodoc
|
||||
mixin _$PaymentError {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user