Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RMQClient/RMQAllocatedChannel.m
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
@interface RMQAllocatedChannel ()
@property (nonatomic, copy, readwrite) NSNumber *channelNumber;
@property (nonatomic, readwrite) NSNumber *contentBodySize;
@property (nonatomic, readwrite) id <RMQDispatcher> dispatcher;
@property (nonatomic, readwrite) NSMutableDictionary *consumers;
@property (nonatomic, readwrite) NSMutableDictionary *exchanges;
@property (nonatomic, readwrite) NSMutableDictionary *exchangeBindings;
Expand All @@ -60,7 +59,8 @@ @interface RMQAllocatedChannel ()
@property (nonatomic, readwrite) NSNumber *prefetchCountPerChannel;
@property (nonatomic, readwrite) id<RMQConnectionDelegate> delegate;
@property (nonatomic, readwrite) id<RMQNameGenerator> nameGenerator;
@property (nonatomic, readwrite) id<RMQChannelAllocator> allocator;
@property (nonatomic, weak, readwrite) id<RMQChannelAllocator> allocator;
@property (nonatomic, weak, readwrite) id <RMQDispatcher> dispatcher;
@end

@implementation RMQAllocatedChannel
Expand Down
2 changes: 1 addition & 1 deletion RMQClient/RMQChannel.h
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ typedef void (^RMQChannelCompletionHandler)(void);
options:(RMQBasicConsumeOptions)options
arguments:(RMQTable * _Nonnull)arguments
handler:(RMQConsumerDeliveryHandler _Nonnull)handler;

/// @brief Internal method used by a consumer object
- (nonnull NSString *)generateConsumerTag;

Expand Down
12 changes: 6 additions & 6 deletions RMQClient/RMQConnection.m
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@
#import "RMQProcessInfoNameGenerator.h"

@interface RMQConnection ()
@property (strong, nonatomic, readwrite) id <RMQTransport> transport;
@property ( nonatomic, readwrite) id <RMQTransport> transport;
@property (nonatomic, readwrite) RMQReader *reader;
@property (nonatomic, readwrite) id <RMQChannelAllocator> channelAllocator;
@property (nonatomic, readwrite) id <RMQFrameHandler> frameHandler;
@property (nonatomic, readwrite) id<RMQLocalSerialQueue> commandQueue;
@property (nonatomic, readwrite) id<RMQWaiterFactory> waiterFactory;
@property (nonatomic, readwrite) id<RMQHeartbeatSender> heartbeatSender;
@property (nonatomic, weak, readwrite) id<RMQConnectionDelegate> delegate;
@property (nonatomic, weak, readwrite) id <RMQChannelAllocator> channelAllocator;
@property (nonatomic, weak, readwrite) id <RMQFrameHandler> frameHandler;
@property (nonatomic, readwrite) id<RMQHeartbeatSender> heartbeatSender;
@property (nonatomic, readwrite) id <RMQChannel> channelZero;
@property (nonatomic, readwrite) RMQConnectionConfig *config;
@property (nonatomic, readwrite) id<RMQLocalSerialQueue> commandQueue;
@property (nonatomic, readwrite) id<RMQWaiterFactory> waiterFactory;
@property (nonatomic, readwrite) NSMutableDictionary *userChannels;
@property (nonatomic, readwrite) NSNumber *frameMax;
@property (nonatomic, readwrite) BOOL handshakeComplete;
Expand Down