mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-07-27 00:45:39 -04:00
Local Rehydration
This commit is contained in:
parent
b964d0db40
commit
c194f61644
48 changed files with 10889 additions and 11940 deletions
|
@ -14,6 +14,7 @@ Future<void> testRoutingContexts() async {
|
|||
{
|
||||
final rc = await Veilid.instance.routingContext();
|
||||
final rcp = rc.withDefaultSafety();
|
||||
// More debuggable this way
|
||||
// ignore: cascade_invocations
|
||||
rcp.close();
|
||||
rc.close();
|
||||
|
@ -22,6 +23,7 @@ Future<void> testRoutingContexts() async {
|
|||
{
|
||||
final rc = await Veilid.instance.routingContext();
|
||||
final rcp = rc.withSequencing(Sequencing.ensureOrdered);
|
||||
// More debuggable this way
|
||||
// ignore: cascade_invocations
|
||||
rcp.close();
|
||||
rc.close();
|
||||
|
@ -34,6 +36,7 @@ Future<void> testRoutingContexts() async {
|
|||
hopCount: 2,
|
||||
stability: Stability.lowLatency,
|
||||
sequencing: Sequencing.noPreference)));
|
||||
// More debuggable this way
|
||||
// ignore: cascade_invocations
|
||||
rcp.close();
|
||||
rc.close();
|
||||
|
@ -42,6 +45,7 @@ Future<void> testRoutingContexts() async {
|
|||
final rc = await Veilid.instance.routingContext();
|
||||
final rcp = rc.withSafety(
|
||||
const SafetySelectionUnsafe(sequencing: Sequencing.preferOrdered));
|
||||
// More debuggable this way
|
||||
// ignore: cascade_invocations
|
||||
rcp.close();
|
||||
rc.close();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue