This is SSDD's Realtime database. Which provides you realtime Database service on your own VPS/pc.
| - | - | 
|---|---|
| 📩 | Download | 
| 📋 | AvailableParameters | 
| 🧾 | Changelog | 
| 🏆 | Credits | 
| ⚖️ | License | 
 implementation 'dev.ssdd:rtdb:2.2'<dependency>
  <groupId>dev.ssdd</groupId>
  <artifactId>rtdb</artifactId>
  <version>2.2</version>
</dependency>Version 1.*
V1 is beta channel for the SSDD RTDB.
Server Implementation would be uploaded soon.
Version 2.* +
Any version except 1.* Would be stable release.
Server Implementation would be uploaded soon.
| Methods/params | uses | 
|---|---|
| setValue() | used to push an object to database. | 
| addValueEventListener() | used to query and listen to multiple values | 
| addSingleValueEventListener() | used to query and listen to single value object | 
| child() | it's used to refer a path in the database (BETA(this might not work properly.)) | 
| children | it's list of children which was created by child(), used to clear the list if needed | 
| push() | used to generate a unique keyID for the database.(BETA(this might not work properly.)) | 
- initiate connection:-
 
SSDD ssdd = new SSDD("yourServerIp/location", "wss"); //TODO to setup server see method 1.- to navigate to specific location:-
 
ssdd.child("path/to/success");- to add/set value to the database:-
 
ssdd.setValue("one step closer to success."); 
// you can use push() method to generate unique id.OR
//you can even set children location just before setting values.
ssdd.child("path/to/success").setValue("one step closer to success.");OR
ssdd.child("path").child("to").child("success").setValue("one step closer to success.");- to listen to a single value:-
 
ssdd.addSingleValueEventListener(new SingleValueEventListener() {
                @Override
                public void onDataChange(@Nullable Object data) {
                //TODO don't forget to runOnUiThread while setting text to textviews or assigning adapter to recycler view or making toast.
                    runOnUiThread(() -> {
                        if(data != null){
                        textView.setText(data.toString());
                        }
                    });
                }
                @Override
                public void onError(@Nullable Exception e) {
                }
            });- to listen to multiple values
 
List<Model> models = new ArrayList<>();
            ssdd.addValueEventListener(new ValueEventListener() {
                @Override
                public void onDataChange(@Nullable List<DataSnapshot> dataSnapshots) {
                    if(dataSnapshots != null){
                        for (DataSnapshot d: dataSnapshots) {
                            models.add(d.getValue(Model.class));
                        }
                    }
                    runOnUiThread(()->{
                        adapter = new Adapter(models);
                        recyclerView.setAdapter(adapter);
                    });
                }
                @Override
                public void onError(@Nullable JSONException e) {
                }
            });More information will be uploaded soon.
- V-1.0.4-BETA:- Public beta, extended support for all java projects.
 - V-1.0.3-BETA:- Internal Tests.
 - V-1.0.2-BETA:- Internal Tests.
 - V-1.0.1-BETA:- Major bug fixes.
 - V-1.0.1:- Major bug fixes.
 
Sandip:- Creator, Developer of SSDDRTDB.
Yamin:- Publishing and management.
RTDB is licensed under the GNU General
Public License v3.0
Permissions of this strong copyleft license are conditioned on making
available complete source code of licensed works and modifications,
which include larger works using a licensed work, under the same
license. Copyright and license notices must be preserved. Contributors
provide an express grant of patent rights.