Last active
March 11, 2021 23:04
-
-
Save ForceTower/b0e3f04e62e21e83c93bd8ff7a71ae2d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.google.firebase.firestore.CollectionReference | |
import com.google.firebase.firestore.DocumentReference | |
import com.google.firebase.firestore.Query | |
import kotlinx.coroutines.ExperimentalCoroutinesApi | |
import kotlinx.coroutines.cancel | |
import kotlinx.coroutines.channels.awaitClose | |
import kotlinx.coroutines.channels.sendBlocking | |
import kotlinx.coroutines.flow.callbackFlow | |
@ExperimentalCoroutinesApi | |
fun DocumentReference.asFlow(reportExceptions: Boolean = true) = callbackFlow { | |
val subscription = [email protected] { value, error -> | |
if (value != null) sendBlocking(value) | |
else if (error != null && reportExceptions) cancel("firestore error", error) | |
} | |
awaitClose { subscription.remove() } | |
} | |
@ExperimentalCoroutinesApi | |
fun CollectionReference.asFlow(reportExceptions: Boolean = true) = callbackFlow { | |
val subscription = [email protected] { value, error -> | |
if (value != null) sendBlocking(value) | |
else if (error != null && reportExceptions) cancel("firestore error", error) | |
} | |
awaitClose { subscription.remove() } | |
} | |
@ExperimentalCoroutinesApi | |
fun Query.asFlow(reportExceptions: Boolean = true) = callbackFlow { | |
val subscription = [email protected] { value, error -> | |
if (value != null) sendBlocking(value) | |
else if (error != null && reportExceptions) cancel("firestore error", error) | |
} | |
awaitClose { subscription.remove() } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment