Coder Social home page Coder Social logo

Comments (4)

elizarov avatar elizarov commented on June 21, 2024

I really hope somebody contributes the corresponding integration. See this document on how to contribute: https://github.com/Kotlin/kotlinx.coroutines/blob/master/integration/README.md

from kotlinx.coroutines.

lucasvsme avatar lucasvsme commented on June 21, 2024

There is an implementation in this gist made by @beyondeye. Maybe a module can be written with that code.

Renaming some functions and changing their signatures to be extension functions that code would look like this.

@Test
fun `Can write and read from Firebase Database`() = runBlocking {
    val database = FirebaseDatabase.getInstance()
    val messageNode = database.getReference("message")

    messageNode.writeValue("Hello World")  // suspend function

    val message = messageNode.readValue(String::class.java) // suspend function

    assertEquals("Hello World", message)
}

There are other methods implemented, but I couldn't write tests for them yet. Also I'm not so familiar with coroutines yet.

from kotlinx.coroutines.

XinyueZ avatar XinyueZ commented on June 21, 2024

I think an upgrade to this topic should be transferred to this now.

https://firebase.google.com/docs/firestore/data-model

from kotlinx.coroutines.

lucasvsme avatar lucasvsme commented on June 21, 2024

@elizarov I've written suspend functions to Task and DatabaseReference here, but I don't know how to integrate the code with the existing Gradle build files of this project. Could you help with that?

from kotlinx.coroutines.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.