From 3fd9bad54ee79935254795ba4855b65ec921b48f Mon Sep 17 00:00:00 2001 From: bebopagogo Date: Sun, 8 May 2022 16:49:04 -0400 Subject: [PATCH] fix so that when NormSyncPolicy is NORM_SYNC_ALL, receivers will NACK in reponse to NORM_CMD(FLUSH) messages received. Also updated normCast example behavior making 'ack auto' operation more robust. --- android/.idea/.gitignore | 3 + android/.idea/caches/build_file_checksums.ser | Bin 0 -> 637 bytes android/.idea/codeStyles/Project.xml | 29 +++ android/.idea/gradle.xml | 18 ++ .../libraries/Gradle__android_android_15.xml | 9 + .../Gradle__annotations_android_15.xml | 9 + android/.idea/misc.xml | 37 ++++ android/.idea/modules.xml | 9 + android/.idea/modules/android.iml | 19 ++ android/.idea/modules/lib/lib.iml | 182 ++++++++++++++++++ android/.idea/vcs.xml | 6 + 11 files changed, 321 insertions(+) create mode 100644 android/.idea/.gitignore create mode 100644 android/.idea/caches/build_file_checksums.ser create mode 100644 android/.idea/codeStyles/Project.xml create mode 100644 android/.idea/gradle.xml create mode 100644 android/.idea/libraries/Gradle__android_android_15.xml create mode 100644 android/.idea/libraries/Gradle__annotations_android_15.xml create mode 100644 android/.idea/misc.xml create mode 100644 android/.idea/modules.xml create mode 100644 android/.idea/modules/android.iml create mode 100644 android/.idea/modules/lib/lib.iml create mode 100644 android/.idea/vcs.xml diff --git a/android/.idea/.gitignore b/android/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/android/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/android/.idea/caches/build_file_checksums.ser b/android/.idea/caches/build_file_checksums.ser new file mode 100644 index 0000000000000000000000000000000000000000..019fee875561a7c5217a741c6357873b1c018c85 GIT binary patch literal 637 zcmZ4UmVvdnh`~NNKUXg?FQq6yGexf?KR>5fFEb@IQ7^qHF(oHeub?PDD>b=9F91S2 zm1gFoxMk*~I%lLNXBU^|7Q2L-Ts|(GuF1r}6pLLM+NFn}y)5YXEgcZPrO4-wA! zYr0;1GPwkFWN~UqNoHPpF*HO<3mNJd*g$FxroYp=)iS|)yL8s4xZ_%RB@7z+p~b01 z#rlaUiMhr3dHPT-`iQVBNG&SKOf5zjaz(c1WF zhT`jiwN^J}r|rCX{lR)=!=mC621hg-lk-zj_5J*VeD(A4i*ogWhLq%kJP(aveJlY1 z_mA-@0gtr_JEurq^!p*4s=65D6rk25P?TeMe({2O_8i9^4ykYAT5WOt7fKieN$_O_ E0Dc(Y4FCWD literal 0 HcmV?d00001 diff --git a/android/.idea/codeStyles/Project.xml b/android/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..30aa626 --- /dev/null +++ b/android/.idea/codeStyles/Project.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/.idea/gradle.xml b/android/.idea/gradle.xml new file mode 100644 index 0000000..edcc4de --- /dev/null +++ b/android/.idea/gradle.xml @@ -0,0 +1,18 @@ + + + + + + \ No newline at end of file diff --git a/android/.idea/libraries/Gradle__android_android_15.xml b/android/.idea/libraries/Gradle__android_android_15.xml new file mode 100644 index 0000000..eb4a4f8 --- /dev/null +++ b/android/.idea/libraries/Gradle__android_android_15.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/android/.idea/libraries/Gradle__annotations_android_15.xml b/android/.idea/libraries/Gradle__annotations_android_15.xml new file mode 100644 index 0000000..9ac4832 --- /dev/null +++ b/android/.idea/libraries/Gradle__annotations_android_15.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/android/.idea/misc.xml b/android/.idea/misc.xml new file mode 100644 index 0000000..6ca7ac9 --- /dev/null +++ b/android/.idea/misc.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/.idea/modules.xml b/android/.idea/modules.xml new file mode 100644 index 0000000..ef93a53 --- /dev/null +++ b/android/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/android/.idea/modules/android.iml b/android/.idea/modules/android.iml new file mode 100644 index 0000000..6103ed0 --- /dev/null +++ b/android/.idea/modules/android.iml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/.idea/modules/lib/lib.iml b/android/.idea/modules/lib/lib.iml new file mode 100644 index 0000000..8f3f717 --- /dev/null +++ b/android/.idea/modules/lib/lib.iml @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/.idea/vcs.xml b/android/.idea/vcs.xml new file mode 100644 index 0000000..45cf85c --- /dev/null +++ b/android/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file