unity-version-manager icon indicating copy to clipboard operation
unity-version-manager copied to clipboard

Add Progress Wrapper Trait

Open Larusso opened this issue 6 years ago • 0 comments

Description

Create a generic progress trait to pass to the install download and install logic. Something down the line:

pub trait Progress {
    progress(progress: u64);
    finish();
}

The goal is to add different implementations:

  • progress bar driver for cli
  • callback based solution for the JNI bindings

Larusso avatar Nov 23 '18 07:11 Larusso