Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Latest commit

 

History

History
16 lines (11 loc) · 472 Bytes

IDisposable.md

File metadata and controls

16 lines (11 loc) · 472 Bytes

com.industry.rx_epl.IDisposable <>

Allows a resource to be disposed after use is finished.

Methods

# .dispose() <>

Dispose of an unused resource.

IDisposable d := Observable.interval(1.0)
	.toChannel("Abc");

d.dispose(); // Terminate the toChannel and the observable.