Lumen help

Statistics API for Android

Introduction

                dnaClient.fetchStats(new InformationCallback() {
    @Override
    public void onStats(State state, long cdn, long dna, long upload, int peers) {
        // Process the stats here
    }
});
            
                dnaClient.fetchStats((state, cdn, dna, upload, peer) -> {
    // Process the stats here
});