• Main Page
  • Classes
  • Files
  • File List

include/SQS/SQSMessage.h

00001 /*
00002  * Copyright 2010 Amazon.com, Inc. or its affiliates. All Rights Reserved.
00003  * 
00004  * Licensed under the Apache License, Version 2.0 (the "License").
00005  * You may not use this file except in compliance with the License.
00006  * A copy of the License is located at
00007  * 
00008  *  http://aws.amazon.com/apache2.0
00009  * 
00010  * or in the "license" file accompanying this file. This file is distributed
00011  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
00012  * express or implied. See the License for the specific language governing
00013  * permissions and limitations under the License.
00014  */
00015 
00016 
00017                
00022 @interface SQSMessage : NSObject 
00023     
00024 {
00025     NSString* messageId;
00026     NSString* receiptHandle;
00027     NSString* mD5OfBody;
00028     NSString* body;
00029     NSMutableDictionary* attributes;
00030 
00031 }
00032 
00033 
00037 @property (nonatomic, retain) NSString* messageId;
00038 
00042 @property (nonatomic, retain) NSString* receiptHandle;
00043 
00047 @property (nonatomic, retain) NSString* mD5OfBody;
00048 
00052 @property (nonatomic, retain) NSString* body;
00053 
00057 @property (nonatomic, retain) NSMutableDictionary* attributes;
00058 
00059 
00064 -(id)init;
00065            
00072 -(NSString*)description;
00073     
00074 
00075 @end
00076     

Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.