Package com.firebase.client

Examples of com.firebase.client.Firebase.child()


              //System.out.println("Test: "+snapshot.getValue());
              String str = (String) snapshot.getValue();
              List<String> followersList = Arrays.asList(str.split(","));
              Firebase users = new Firebase("https://signal-app.firebaseio.com/users");
              for(String user:followersList){
                users.child(user).child("inbox").child(messageKey).setValue(message);
              }
             
            }
         
           
View Full Code Here


    // entry from the requester.
    private void updateContactSearch(String result, String request){
      String url = "https://signal-app.firebaseio.com/contact-search/";
      Firebase dataRef = new Firebase(url);
     
      dataRef.child(request).setValue(result);
    }
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.