forked from EFEducationFirstMobile/librabbitmq-objc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AMQPQueue.h
50 lines (38 loc) · 2.08 KB
/
AMQPQueue.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// AMQPQueue.h
// Objective-C wrapper for librabbitmq-c
//
// Copyright 2009 Max Wolter. All rights reserved.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
#import <Foundation/Foundation.h>
#import "amqp.h"
@class AMQPChannel;
@class AMQPExchange;
@class AMQPConsumer;
@class AMQPMessage;
@interface AMQPQueue : NSObject
@property (readonly) AMQPChannel *channel;
- (id)initWithName:(NSString *)theName onChannel:(AMQPChannel *)theChannel isPassive:(BOOL)passive isExclusive:(BOOL)exclusive isDurable:(BOOL)durable getsAutoDeleted:(BOOL)autoDelete;
- (void)bindToExchange:(AMQPExchange *)theExchange withKey:(NSString *)bindingKey completion:(void(^)(NSError *error))completionBlock;
- (void)unbindFromExchange:(AMQPExchange *)theExchange withKey:(NSString *)bindingKey completion:(void(^)(NSError *error))completionBlock;
- (void)deleteQueue:(void(^)(NSError *error))completionBlock;
- (void)declare:(void(^)(NSError *error))completionBlock;
/// This is the Pull-API for messages and may return a nil message and nil error
/// if no messages exists.
- (void)getMessageWithAutoAcknowledgement:(BOOL)autoAck completion:(void(^)(AMQPMessage *message, NSError *error))completionBlock;
/// Only messages retrieved without auto acknowledgement should be acknowledged.
- (void)acknowledgeMessage:(AMQPMessage *)message completion:(void(^)(NSError *error))completionBlock;
- (AMQPConsumer *)startConsumerWithAcknowledgements:(BOOL)ack isExclusive:(BOOL)exclusive receiveLocalMessages:(BOOL)local;
@end