summaryrefslogtreecommitdiff
path: root/FireBase/Offline/StreamingOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'FireBase/Offline/StreamingOptions.cs')
-rw-r--r--FireBase/Offline/StreamingOptions.cs10
1 files changed, 6 insertions, 4 deletions
diff --git a/FireBase/Offline/StreamingOptions.cs b/FireBase/Offline/StreamingOptions.cs
index 4a5f7b8..a420cbb 100644
--- a/FireBase/Offline/StreamingOptions.cs
+++ b/FireBase/Offline/StreamingOptions.cs
@@ -3,18 +3,20 @@
public enum StreamingOptions
{
/// <summary>
- /// No realtime streaming.
+ /// No realtime streaming.
/// </summary>
None,
/// <summary>
- /// Streaming of only new items - not the existing ones.
+ /// Streaming of only new items - not the existing ones.
/// </summary>
LatestOnly,
/// <summary>
- /// Streaming of all items. This will also pull all existing items on start, so be mindful about the number of items in your DB.
- /// When used, consider not setting the <see cref="InitialPullStrategy"/> to <see cref="InitialPullStrategy.Everything"/> because you would pointlessly pull everything twice.
+ /// Streaming of all items. This will also pull all existing items on start, so be mindful about the number of items in
+ /// your DB.
+ /// When used, consider not setting the <see cref="InitialPullStrategy" /> to
+ /// <see cref="InitialPullStrategy.Everything" /> because you would pointlessly pull everything twice.
/// </summary>
Everything
}