NamespaceDocs.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
  2. namespace System.Reactive
  3. {
  4. /// <summary>
  5. /// The <b>System.Reactive</b> namespace contains interfaces and classes used throughout the Reactive Extensions library.
  6. /// </summary>
  7. [System.Runtime.CompilerServices.CompilerGeneratedAttribute]
  8. class NamespaceDoc
  9. {
  10. }
  11. }
  12. namespace System.Reactive.Concurrency
  13. {
  14. /// <summary>
  15. /// The <b>System.Reactive.Concurrency</b> namespace contains interfaces and classes that provide the scheduler infrastructure used by Reactive Extensions to construct and
  16. /// process event streams. Schedulers are used to parameterize the concurrency introduced by query operators, provide means to virtualize time, to process historical data,
  17. /// and to write unit tests for functionality built using Reactive Extensions constructs.
  18. /// </summary>
  19. [System.Runtime.CompilerServices.CompilerGeneratedAttribute]
  20. class NamespaceDoc
  21. {
  22. }
  23. }
  24. namespace System.Reactive.Disposables
  25. {
  26. /// <summary>
  27. /// The <b>System.Reactive.Disposables</b> namespace contains interfaces and classes that provide a compositional set of constructs used to deal with resource and subscription
  28. /// management in Reactive Extensions. Those types are used extensively within the implementation of Reactive Extensions and are useful when writing custom query operators or
  29. /// schedulers.
  30. /// </summary>
  31. [System.Runtime.CompilerServices.CompilerGeneratedAttribute]
  32. class NamespaceDoc
  33. {
  34. }
  35. }
  36. namespace System.Reactive.Linq
  37. {
  38. /// <summary>
  39. /// The <b>System.Reactive.Linq</b> namespace contains interfaces and classes that support expressing queries over observable sequences, using Language Integrated Query (LINQ).
  40. /// Query operators are made available as extension methods for IObservable&lt;T&gt; and IQbservable&lt;T&gt; defined on the Observable and Qbservable classes, respectively.
  41. /// </summary>
  42. [System.Runtime.CompilerServices.CompilerGeneratedAttribute]
  43. class NamespaceDoc
  44. {
  45. }
  46. }
  47. namespace System.Reactive.Subjects
  48. {
  49. /// <summary>
  50. /// The <b>System.Reactive.Subjects</b> namespace contains interfaces and classes to represent subjects, which are objects implementing both IObservable&lt;T&gt; and IObserver&lt;T&gt;.
  51. /// Subjects are often used as sources of events, allowing one party to raise events and allowing another party to write queries over the event stream. Because of their ability to
  52. /// have multiple registered observers, subjects are also used as a facility to provide multicast behavior for event streams in queries.
  53. /// </summary>
  54. [System.Runtime.CompilerServices.CompilerGeneratedAttribute]
  55. class NamespaceDoc
  56. {
  57. }
  58. }