00001 #ifndef _client_AckMode_h 00002 #define _client_AckMode_h 00003 00004 00005 /* 00006 * 00007 * Licensed to the Apache Software Foundation (ASF) under one 00008 * or more contributor license agreements. See the NOTICE file 00009 * distributed with this work for additional information 00010 * regarding copyright ownership. The ASF licenses this file 00011 * to you under the Apache License, Version 2.0 (the 00012 * "License"); you may not use this file except in compliance 00013 * with the License. You may obtain a copy of the License at 00014 * 00015 * http://www.apache.org/licenses/LICENSE-2.0 00016 * 00017 * Unless required by applicable law or agreed to in writing, 00018 * software distributed under the License is distributed on an 00019 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 00020 * KIND, either express or implied. See the License for the 00021 * specific language governing permissions and limitations 00022 * under the License. 00023 * 00024 */ 00025 00026 namespace qpid { 00027 namespace client { 00028 00034 enum AckMode { 00038 NO_ACK = 0, 00042 AUTO_ACK = 1, 00045 LAZY_ACK = 2, 00048 CLIENT_ACK = 3 00049 }; 00050 00051 }} // namespace qpid::client 00052 00053 #endif