File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,16 @@ namespace RabbitMQ.Client
23
23
public static RabbitMQ.Client.AmqpTcpEndpoint Parse(string address) { }
24
24
public static RabbitMQ.Client.AmqpTcpEndpoint[] ParseMultiple(string addresses) { }
25
25
}
26
- public struct AmqpTimestamp
26
+ public struct AmqpTimestamp : System.IEquatable<RabbitMQ.Client.AmqpTimestamp>
27
27
{
28
28
public AmqpTimestamp(long unixTime) { }
29
29
public long UnixTime { get; }
30
+ public bool Equals(RabbitMQ.Client.AmqpTimestamp other) { }
31
+ public override bool Equals(object obj) { }
32
+ public override int GetHashCode() { }
30
33
public override string ToString() { }
34
+ public static bool !=(RabbitMQ.Client.AmqpTimestamp left, RabbitMQ.Client.AmqpTimestamp right) { }
35
+ public static bool ==(RabbitMQ.Client.AmqpTimestamp left, RabbitMQ.Client.AmqpTimestamp right) { }
31
36
}
32
37
public class AsyncDefaultBasicConsumer : RabbitMQ.Client.IAsyncBasicConsumer, RabbitMQ.Client.IBasicConsumer
33
38
{
You can’t perform that action at this time.
0 commit comments