Created
September 3, 2017 20:26
-
-
Save MMarus/ef8e1f51c7e1550f4fd55fe18b968d6d to your computer and use it in GitHub Desktop.
kt
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
db.child("goals").orderByChild("performer").equalTo(mFirebaseAuth.currentUser?.uid).addListenerForSingleValueEvent( | |
object : ValueEventListener { | |
override fun onDataChange(dataSnapshot: DataSnapshot) { | |
// Get user information | |
dataSnapshot.children.forEach { i -> test(i)} | |
} | |
override fun onCancelled(databaseError: DatabaseError) { | |
} | |
}) | |
} | |
fun test(i: DataSnapshot) { | |
val goal: Goal = i.getValue(Goal::class.java) | |
Log.d(TAG, goal.name) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment