Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
StackExchange.Redis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
StackExchange.Redis
Commits
d7789b4e
Commit
d7789b4e
authored
Jul 05, 2018
by
Marc Gravell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tidy up documentation around ChannelMessageQueue
parent
c6af6cf0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
ChannelMessageQueue.cs
...Exchange.Redis/StackExchange/Redis/ChannelMessageQueue.cs
+1
-0
ConfigurationOptions.cs
...xchange.Redis/StackExchange/Redis/ConfigurationOptions.cs
+1
-1
ConnectionMultiplexer.cs
...change.Redis/StackExchange/Redis/ConnectionMultiplexer.cs
+1
-1
IConnectionMultiplexer.cs
.../StackExchange/Redis/Interfaces/IConnectionMultiplexer.cs
+1
-1
No files found.
StackExchange.Redis/StackExchange/Redis/ChannelMessageQueue.cs
View file @
d7789b4e
...
...
@@ -30,6 +30,7 @@ internal ChannelMessage(RedisChannel channel, RedisValue value)
/// <summary>
/// Represents a message queue of pub/sub notifications
/// </summary>
/// <remarks>To create a ChannelMessageQueue, use ISubscriber.Subscribe[Async](RedisKey)</remarks>
public
sealed
class
ChannelMessageQueue
{
private
readonly
Channel
<
ChannelMessage
>
_channel
;
...
...
StackExchange.Redis/StackExchange/Redis/ConfigurationOptions.cs
View file @
d7789b4e
...
...
@@ -258,7 +258,7 @@ public int ConnectTimeout
/// <summary>
/// Specifies whether asynchronous operations should be invoked in a way that guarantees their original delivery order
/// </summary>
[
Obsolete
(
"Not supported;
attempting to guarantee delivery order is consistently a cause of major performance problems"
,
false
)]
[
Obsolete
(
"Not supported;
if you require ordered pub/sub, please see "
+
nameof
(
ChannelMessageQueue
)
,
false
)]
public
bool
PreserveAsyncOrder
{
get
{
return
preserveAsyncOrder
.
GetValueOrDefault
(
true
);
}
...
...
StackExchange.Redis/StackExchange/Redis/ConnectionMultiplexer.cs
View file @
d7789b4e
...
...
@@ -1809,7 +1809,7 @@ public override string ToString()
/// <summary>
/// Gets or sets whether asynchronous operations should be invoked in a way that guarantees their original delivery order
/// </summary>
[
Obsolete
(
"Not supported;
attempting to guarantee delivery order is consistently a cause of major performance problems"
,
false
)]
[
Obsolete
(
"Not supported;
if you require ordered pub/sub, please see "
+
nameof
(
ChannelMessageQueue
)
,
false
)]
public
bool
PreserveAsyncOrder
{
get
=>
false
;
...
...
StackExchange.Redis/StackExchange/Redis/Interfaces/IConnectionMultiplexer.cs
View file @
d7789b4e
...
...
@@ -44,7 +44,7 @@ public interface IConnectionMultiplexer
/// <summary>
/// Gets or sets whether asynchronous operations should be invoked in a way that guarantees their original delivery order
/// </summary>
[
Obsolete
(
"Not supported;
attempting to guarantee delivery order is consistently a cause of major performance problems"
,
false
)]
[
Obsolete
(
"Not supported;
if you require ordered pub/sub, please see "
+
nameof
(
ChannelMessageQueue
)
,
false
)]
bool
PreserveAsyncOrder
{
get
;
set
;
}
/// <summary>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment