Midhilaj
Midhilaj

Reputation: 4987

View How much to download and how much time left

Is there any option to get how much data downloaded and how much time left
When using firebase realtime database

ValueEventListener valueEventListener=new ValueEventListener() {
                @Override
                public void onDataChange(@NonNull DataSnapshot dataSnapshot) {

                }

                @Override
                public void onCancelled(@NonNull DatabaseError databaseError) {

                }

            };

Upvotes: 1

Views: 20

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317467

No, there are no progress or status notifications for Realtime Database listeners.

Upvotes: 1

Related Questions