blob: 4c23cab6c825547a3d5fa6af2298950ac5478c46 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using Apache.Qpid.Proton.Client.Implementation;
namespace Apache.Qpid.Proton.Client
{
public interface IDeliveryState
{
/// <summary>
/// Returns an enumeration value which indicates what type of DeliveryState
/// this instance represents.
/// </summary>
DeliveryStateType Type { get; }
/// <summary>
/// Quick access to determine if the state value indicates the delivery was accepted.
/// </summary>
bool IsAccepted { get; }
/// <summary>
/// Returns an instance of a delivery state that accepts a delivery
/// </summary>
/// <returns>An accepted delivery state type</returns>
static IDeliveryState Accepted() => ClientAccepted.Instance;
/// <summary>
/// Returns an instance of a delivery state that releases a delivery
/// </summary>
/// <returns>An released delivery state type</returns>
static IDeliveryState Released() => ClientReleased.Instance;
/// <summary>
/// Returns an instance of a delivery state that rejects a delivery
/// </summary>
/// <returns>An rejected delivery state type</returns>
static IDeliveryState Rejected(string condition, string description = null) => new ClientRejected(condition, description);
/// <summary>
/// Returns an instance of a delivery state that modifies a delivery
/// </summary>
/// <returns>An modified delivery state type</returns>
static IDeliveryState Modified(bool deliveryFailed, bool undeliverableHere = false) => new ClientModified(deliveryFailed, undeliverableHere);
}
}