com.jdroid.java.firebase.database.FirebaseCountDownLatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdroid-java-firebase-database Show documentation
Show all versions of jdroid-java-firebase-database Show documentation
Firebase Database Repository for Jdroid
The newest version!
package com.jdroid.java.firebase.database;
import com.firebase.client.DataSnapshot;
import java.util.concurrent.CountDownLatch;
public class FirebaseCountDownLatch extends CountDownLatch {
private DataSnapshot dataSnapshot;
private FirebaseException firebaseException;
public FirebaseCountDownLatch() {
super(1);
}
public FirebaseException getFirebaseException() {
return firebaseException;
}
public void setFirebaseException(FirebaseException firebaseException) {
this.firebaseException = firebaseException;
}
public DataSnapshot getDataSnapshot() {
return dataSnapshot;
}
public void setDataSnapshot(DataSnapshot dataSnapshot) {
this.dataSnapshot = dataSnapshot;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy