| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- using qdr.fnd.core.pqueue.Enums;
- using Quadarax.Foundation.Core.Data;
- namespace qdr.fnd.core.pqueue.Storages
- {
- /// <summary>
- /// PsQueue persistence storage interface. Manipulates with <see cref="IPsQueueItem"/> entities.
- /// <remarks>
- /// Has no any business logic. Just a storage interface.
- /// Throws directly exceptions if something goes wrong.
- /// </remarks>
- /// </summary>
- public interface IPsQueueStorage : IDisposable
- {
- #region *** Operations ***
-
- #region **** Items ****
- /// <summary>
- /// Creates a new item in the queue storage and returns its identifier.
- /// <remarks>
- /// </remarks>
- /// </summary>
- /// <param name="owner">Owner identifier</param>
- /// <param name="ownerRef">Owner reference identifier</param>
- /// <param name="providerClass">Process provider qualified type name</param>
- /// <param name="initialAttempts">Initial amount of attempts to processing items</param>
- /// <param name="created">Timestamp when record will be created. If null use current datetime.</param>
- /// <returns>Item identifier.</returns>
- public string CreateItem(string owner, string ownerRef, string providerClass,int initialAttempts, DateTime? created);
- /// <summary>
- /// Deletes (force) the item (and all related entities) specified by the <paramref name="itemId"/> no matter what status item has.
- /// <remarks>
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- public void DeleteItem(string itemId);
- /// <summary>
- /// Updates the priority of the item specified by the <paramref name="itemId"/>.
- /// <remarks>
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <param name="priority">Process priority value.</param>
- public void UpdateItemPriority(string itemId, int priority);
-
- /// <summary>
- /// Updates the validity of the item specified by the <paramref name="itemId"/>.
- /// <remarks>
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <param name="validForm">Timestamp for validFrom value.</param>
- /// <param name="validTo">Timespamp for validTo value.</param>
- public void UpdateItemValidity(string itemId, DateTime validForm, DateTime? validTo);
-
- /// <summary>
- /// Updates the status of the item specified by the <paramref name="itemId"/>. Doesn't affects the status journal or logs.
- /// <remarks>
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// Doesn't validate the status transitions. Force update.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <param name="status">New item status. If null status will be kept.</param>
- /// <param name="isTransient">New transient flag.</param>
- public void UpdateItemStatus(string itemId, PsStatusEnum? status, bool isTransient);
-
- /// <summary>
- /// Updates the attempts left value of the item specified by the <paramref name="itemId"/>.
- /// <remarks>
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// Doesn't validate attempts counter. Force update.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <param name="attemptsLeft">New attempt value.</param>
- public void UpdateItemAttempts(string itemId, int attemptsLeft);
-
- /// <summary>
- /// Updates the process started timestamp of the item specified by the <paramref name="itemId"/>.
- /// <remarks>
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <param name="started">New timestamp value or null.</param>
- public void UpdateItemStarted(string itemId, DateTime? started);
-
- /// <summary>
- /// Updates the process finished timestamp of the item specified by the <paramref name="itemId"/>.
- /// <remarks>
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <param name="finished">New timestamp value or null.</param>
- public void UpdateItemFinished(string itemId, DateTime? finished);
- #endregion
- #region **** Item Attributes ****
- /// <summary>
- /// Creates a new item attribute with the specified <paramref name="name"/> and <paramref name="value"/> for the item specified by the <paramref name="itemId"/>.
- /// <remarks>
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// If <paramref name="name"/> already exists, the method should throw an exception.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <param name="name">Unique attribute name in <paramref name="itemId"/> scope.</param>
- /// <param name="value">Value serialized as string or null.</param>
- /// <param name="valueTypeClass">Value type qualified class name.</param>
- /// <param name="isOutput">Flag defines if attribute is input/output.</param>
- public void CreateItemAttribute(string itemId, string name, string? value, string valueTypeClass,bool isOutput);
-
- /// <summary>
- /// Updates the value of the item attribute specified by the <paramref name="name"/> for the item specified by the <paramref name="itemId"/>.
- /// <remarks>
- /// If <paramref name="transactionId"/> not exists, the method should throw an exception.
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// If <paramref name="name"/> not exists, the method should throw an exception.
- /// </remarks>
- /// </summary>
- /// <param name="transactionId">Transaction identifier generated by <see cref="CreateTransaction"/> operation.</param>
- /// <param name="itemId">Item identifier.</param>
- /// <param name="name">Unique attribute name in <paramref name="itemId"/> scope.</param>
- /// <param name="value">Value serialized as string or null.</param>
- public void UpdateItemAttribute(string itemId, string name, string value);
- /// <summary>
- /// Deletes the item attribute specified by the <paramref name="name"/> for the item specified by the <paramref name="itemId"/>.
- /// <remarks>
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// If <paramref name="name"/> not exists, the method should throw an exception.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <param name="name">Unique attribute name in <paramref name="itemId"/> scope.</param>
- public void DeleteItemAttribute(string itemId, string name);
- #endregion
- #region **** Item Collections ****
- /// <summary>
- /// Appends a new log record to the item specified by the <paramref name="itemId"/>.
- /// <remarks>
- /// If <paramref name="transactionId"/> not exists, the method should throw an exception.
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <param name="message">Log message.</param>
- /// <param name="code">Message code</param>
- /// <param name="messageType">Message type</param>
- public void AppendLog(string itemId, string message, int code, ErrorLevelEnum messageType);
- /// <summary>
- /// Appends a new status journal record to the item specified by the <paramref name="itemId"/>.
- /// <remarks>
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <param name="status">Previous status.</param>
- /// <param name="isTransient">Previous isTransient flag.</param>
- /// <param name="message">Message.</param>
- public void AppendStatusJournal(string itemId, PsStatusEnum status, bool isTransient, string message);
- #endregion
- #region **** Queries & Get ****
- /// <summary>
- /// Returns collection of process item by input conditions.
- /// <remarks>
- /// Query items outside the transaction scope (must be committed).
- /// </remarks>
- /// </summary>
- /// <param name="owner">Owner identifier. If null then condition is skipped.</param>
- /// <param name="ownerRef">Owner reference identifier. If null then condition is skipped.</param>
- /// <param name="status">Collection of requested complex statuses (isTransient, Status).</param>
- /// <returns>Queryable collection of requested items.</returns>
- public IQueryable<IPsQueueItem> Query(string? owner, string? ownerRef, params Tuple<bool,PsStatusEnum>[] status);
-
- /// <summary>
- /// Gets the item specified by the <paramref name="itemId"/>.
- /// <remarks>
- /// If <paramref name="itemId"/> not exists, the method should throw an exception.
- /// </remarks>
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <returns>Requested item.</returns>
- public IPsQueueItem GetItem(string itemId);
- /// <summary>
- /// Checks if the item with the specified <paramref name="itemId"/> exists in the storage.
- /// </summary>
- /// <param name="itemId">Item identifier.</param>
- /// <returns>Returns true if item exists in storage.</returns>
- public bool ContainsItem(string itemId);
- #endregion
- #endregion
- }
- }
|