io.nextop.rx.RxManaged Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
Nextop client for Android 10+
The newest version!
package io.nextop.rx;
import io.nextop.Id;
public class RxManaged {
public final Id id;
public RxManaged(Id id) {
this.id = id;
}
/** Called immediately after the managed object is removed from the manager. */
public void close() {
}
}