Skip to content

Instantly share code, notes, and snippets.

@ForceTower
Last active March 11, 2021 23:04
Show Gist options
  • Save ForceTower/b0e3f04e62e21e83c93bd8ff7a71ae2d to your computer and use it in GitHub Desktop.
Save ForceTower/b0e3f04e62e21e83c93bd8ff7a71ae2d to your computer and use it in GitHub Desktop.
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