- All Known Implementing Classes:
LoggingDecorator,SchedulerVideoIO,StatusDecorator,VCRSyncDecorator,VideoSyncDecorator
public interface Decorator
For this project, Decorators are classes that manage a bundle of subscribers to
VideoIO objects. Generally, using their constructor wires them up. If you no longer
need them just call `unsubscribe()`.
- Since:
- 2016-02-03T13:27:00
- Author:
- Brian Schlining
-
Method Summary
Modifier and TypeMethodDescriptionvoidTells the decorator to unsubscribe from all Observables that it is watching.
-
Method Details
-
unsubscribe
void unsubscribe()Tells the decorator to unsubscribe from all Observables that it is watching.
-