Commit ea178ec7 authored by Marc Gravell's avatar Marc Gravell

Fix IConnectionMultiplexer debugging API

parent 0231deb4
...@@ -5,8 +5,13 @@ ...@@ -5,8 +5,13 @@
namespace StackExchange.Redis namespace StackExchange.Redis
{ {
/// <summary>
/// Represents the abstract multiplexer API
/// </summary>
public interface IConnectionMultiplexer public interface IConnectionMultiplexer
{ {
#if DEBUG
/// <summary> /// <summary>
/// For debugging; when not enabled, servers cannot connect /// For debugging; when not enabled, servers cannot connect
/// </summary> /// </summary>
...@@ -16,7 +21,7 @@ public interface IConnectionMultiplexer ...@@ -16,7 +21,7 @@ public interface IConnectionMultiplexer
/// For debugging; when not enabled, end-connect is silently ignored (to simulate a long-running connect) /// For debugging; when not enabled, end-connect is silently ignored (to simulate a long-running connect)
/// </summary> /// </summary>
bool IgnoreConnect { get; set; } bool IgnoreConnect { get; set; }
#endif
/// <summary> /// <summary>
/// Gets the client-name that will be used on all new connections /// Gets the client-name that will be used on all new connections
/// </summary> /// </summary>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment