Created
September 11, 2011 20:55
-
-
Save anaisbetts/1210109 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public IObservable<IObservable<T>> Window( | |
| this IObservable<T> source, | |
| // An Observable that fires when Windows should open | |
| IObservable<TWindowOpening> windowOpenings, | |
| // A Func that given a Window opening, will determine when that window | |
| // should close. | |
| Func<TWindowOpening, IObservable<TWindowClosing>> windowClosingSelector); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment