diff --git a/AgQueue.Common/AgQueue.Common.xml b/AgQueue.Common/AgQueue.Common.xml
deleted file mode 100644
index 0c29af7..0000000
--- a/AgQueue.Common/AgQueue.Common.xml
+++ /dev/null
@@ -1,279 +0,0 @@
-
-
-
- AgQueue.Common
-
-
-
-
- Extensions methods for use on Objects.
-
-
-
-
- Throws ArgumentNullException if object is null.
-
- Object to perform null check on.
- Param name to include in exception message.
-
-
-
- Extensions methods to be used on stings.
-
-
-
-
- Standardizes the queue name so it's always consistent.
-
- Raw queue name.
- Standardized queue name.
-
-
-
- Interface for Client to implement.
-
-
-
-
- Current state of a message.
-
-
-
-
- Gets active value. Is the message is live and can be pulled from the queue.
-
-
-
-
- Gets InTransaction. Means the message is currently tied to a transaction, either during insert of during processing. IOW, this message is currently being inserted or pulled from the queue.
-
-
-
-
- Gets processed state. i.e. This message has been processed and will not be pulled.
-
-
-
-
- Gets if Message has expired and will not be pulled.
-
-
-
-
- Gets boolean representing if RetryExceeded. Message retry limit has been reached and message will no longer be pulled.
-
-
-
-
- Represents a Queue Message.
-
-
-
-
- Gets generated unique message id.
-
-
-
-
- Gets the id of the queue.
-
-
-
-
- Gets the id of the queue transaction.
-
-
-
-
- Gets the transaction action. i.e. was this message added or pulled in the transaction.
-
-
-
-
- Gets the datetime the message was added.
-
-
-
-
- Gets the datetime the message was closed, i.e. processed or cancelled or expired.
-
-
-
-
- Gets the priority of the message. Lower is higher priority.
-
-
-
-
- Gets number of attempts to have message processed, i.e. commited.
-
-
-
-
- Gets the number of rollbacks or timeouts before the message expires.
-
-
-
-
- Gets DateTime the message will expire.
-
-
-
-
- Gets the interger correlation id, used by calling application.
-
-
-
-
- Gets string group name. Used by external application for grouping purposes.
-
-
-
-
- Gets actual message data.
-
-
-
-
- Gets Message State, i.e. Active, closed, etc.
-
-
-
-
- Gets string based metadata describing the message in more detail. Optional.
-
-
-
-
- Represents a Queue.
-
-
-
-
- Gets the unique queue id.
-
-
-
-
- Gets the name of the queue.
-
-
-
-
- Represents a Queue Transaction.
-
-
-
-
- Gets the unique ID for a transaction.
-
-
-
-
- Gets a value indicating the state of the transaction.
-
-
-
-
- Gets the date and time the transaction was created.
-
-
-
-
- Gets the date and time the transaction will expire. e.g. after this datetime, the transaction will automatically rollback.
-
-
-
-
- Gets the date and time the transaction was closed, null if not closed.
-
-
-
-
- Represents the action performed within a transaction.
-
-
-
-
- This should never happen.
-
-
-
-
- Item was added within a transaction (if rolledback, delete).
-
-
-
-
- Item was pulled within transaction, increment retry count if rolledback.
-
-
-
-
- Result of transaction commital.
-
- Only commits use the results since commits may have valid responses. If a rollback fails, an exception should be thrown, at least for now.
-
-
-
- Transaction was successfully committed.
-
-
-
-
- Transaction expired before the commit could be completed.
-
-
-
-
- The transaction was already closed.
-
-
-
-
- Transaction could not be found. Perhaps this should be an exception.
-
-
-
-
- The current state of a transaction.
-
-
-
-
- This should never occur. It means there is a serious bug.
-
-
-
-
- Transaction is active.
-
-
-
-
- Transaction has been committed by user.
-
-
-
-
- Transaction was rolled back by user.
-
-
-
-
- Transaction was automatically expired due to timeout.
-
-
-
-
- Exception thrown for unique WorkQueue exceptions.
-
-
-
-
- Initializes a new instance of the class.
-
- Error message.
-
-
-
diff --git a/AgQueue.GrpcServer/AgQueue.GrpcServer.csproj b/AgQueue.GrpcServer/AgQueue.GrpcServer.csproj
deleted file mode 100644
index b3adb32..0000000
--- a/AgQueue.GrpcServer/AgQueue.GrpcServer.csproj
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
- net9.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/AgQueue.Library/AgQueue.Library.xml b/AgQueue.Library/AgQueue.Library.xml
deleted file mode 100644
index 97022fb..0000000
--- a/AgQueue.Library/AgQueue.Library.xml
+++ /dev/null
@@ -1,503 +0,0 @@
-
-
-
- AgQueue.Server.Common
-
-
-
-
- Starting point for accessing all queue related APIS
- This is mostly a factory for creating Queues and Transactions.
-
-
- Exceptions are not used unless there is an exceptional condition. For example, if an items doesn't exist or a param is invalid,
- this is handled without an exception. This is mostly for speed and simplicity with the gRPC interface.
-
-
-
-
- Initializes a new instance of the class.
-
- The storage implementation to use for storage of queues and messages.
- The QueueOptions object passed in via DI.
-
-
-
- Creates a new queue.
-
- The name of the queue.
- A Queue info object. Note: the queueName is the stadnardized name.
-
-
-
- Delete a queue and all messages in the queue.
- Throws an exception if Queue doesn't exist.
-
- Name of the queue to delete.
-
-
-
- Returns information about the requested queue.
-
- The ID of the queue.
- QueueInfo object. Returns null if not found.
-
-
-
- Returns information about the requested queue.
-
- The Name of the queue to lookup.
- QueueInfo object. Null if not found.
-
-
-
- Deletes a queue and 1) rollsback any transaction related to the queue, 2) deletes all messages in the queue.
-
- Queue id.
- ValueTask.
-
-
-
- Disposes of storage resources.
-
-
-
-
- Creates underlying structure in the storage layer.
-
- Will delete and recreate underlying structures.
- Returns ValueTask.
-
-
-
- Starts a transaction used my add message and pull message.
-
- Override default expiration time.
- Transaction ID.
-
-
-
- Extends the transaction by x number of minutes (from the current datetime).
-
- The transaction to extend.
- How long to extend the transaction by.
- ValueTask.
-
-
-
- View the next message in the spcified queue.
-
- Keep in mind, this may change by the time of the dequeue call.
- The queue to peek from.
- Message object or null if no message available.
-
-
-
- Retrieve a message by it's message ID.
-
- Keep in mind, this may change by the time of the dequeue call.
- The ID of the message to retrieve.
- Message object or null if no message available.
-
-
-
- Commits Transaction, updating all messages in transaction.
-
- Transaction Id to commit.
- ValueTask.
-
-
-
- Rollsback a transaction, undoing any changes to messages in the transaction.
-
- The transaction ID of the transaction to rollback.
- ValueTask.
-
-
-
- Adds a message to the specified queue.
-
- The transaction to add the message in.
- The queue the message will be placed in.
- The message payload.
- Message metadata.
- The message priority. Higher numbers will have higher priority.
- How many times should the message pull fail before being retired.
- How long in minutes before the message will expire before it's pulled. 0 = no expiration.
- Correlation number.
- Group name applied to message.
- Return the message id.
-
-
-
- Dequeues a message from a specific queue.
-
- The transaction ID of the transaction the message will be dequeued in.
- The queue to pull the messge from.
- Returns a message object or null if there is no message to dequeue.
-
-
-
- Expires transactions, message and checks message counts, maybe.
-
- The current time is passed in so it is consistent with the time used in the calling procedure.
- ValueTask.
-
-
-
- The interface for storing and retrieving queue information from a storage mechinism, usually a database.
- When implementing IStorage, use the StorageSqlite as an example. There should be no business logic in
- classes that implement IStorage.
-
-
-
-
- Called when Queue process starts. Connections to the storage should be made here, etc.
-
- Should all existing queues and messages be deleted.
- ValueTask.
-
-
-
- Create a new Queue in storage.
-
- Queue name.
- ValueTask.
-
-
-
- Delete a Queue and ALL messages in the Queue.
-
- Queue Id of the queue to delete.
- ValueTask.
-
-
-
- Returns a Transaction object or null value if not found.
-
- The Id of the transaction to lookup.
- Transaction object or null if not found.
-
-
-
- Add a message to the storage.
-
- Queue Transaction ID.
- ID of the storage queue.
- Message data.
- Datetime the message was added.
- String metadata on message data.
- Message priority.
- How many retries before expires.
- Datetime the message will expire.
- Correlation ID.
- Group name.
- Always will be "add".
- "Always will be in transaction.
- Message ID.
-
-
-
- Returns the id and name of the Queue. If no queue is found, returns null.
-
-
- This search should be case sensitive, only use LIKE with SQLite.
-
- Name of the queue to lookup.
- QueueInfo containing ID and Name of queue. Null if not found.
-
-
-
- Returns the id and name of the Queue. If no queue is found, returns null.
-
-
- This search should be case sensitive, only use LIKE with SQLite.
-
- ID of the queue to lookup.
- QueueInfo containing ID and Name of queue. Null if not found.
-
-
-
- Starts a transaction for use when adding or pulling messages.
-
- When the transaction started.
- When the transaction will end.
- Returns transaction ID.
-
-
-
- Updates a set of messages.
-
- The storage transaction to make change within.
- The transaction the messages are associated with.
- The TransactionAction to search for.
- Current message state.
- Update the message state to this value.
- Returns the number of messages updated.
-
-
-
- Updates the message retry cuont based on transactionAction and MessageState.
-
- The storage transaction to run the query under.
- The messages must be in this transaction.
- The transactionAction the message must be in.
- The messageState the message must be in.
- Number of messages updated.
-
-
-
- Delete messages that were added in the specified transtacion.
-
- The storage transaction to run the query in.
- The transaction the messages must be in.
- Number of records deleted.
-
-
-
- Extends the transaction's expiration datetime.
-
- The id of the transaction to update.
- The new expiration datetime.
- ValueTask.
-
-
-
- Update the transaction's state and end datetime.
-
- The storage transaction to make change within.
- The id of the transaction to update.
- The new state of the transaction.
- Reason the transaction was ended. Optional.
- Datetime the transaction was closed (or null if not closed).
- ValueTask.
-
-
-
- Starts a storage (database) transaction, not a queue transaction.
-
-
- Not all Storage classes will have internal transactions, so this can return a dummy class that performs no actions.
-
- Returns a class represented by IStorageTransaction which can commit or rollbacl the transaction.
-
-
-
- Deletes added messages in an expired transaction.
-
- Storage Transaction to run under.
- DateTime to expire against.
- Returns the count of the deleted records.
-
-
-
- Updates the retry counts for messages in an expired transaction.
-
- Storage Transaction to run under.
- DateTime to expire against.
- Number of records updated.
-
-
-
- Expires transactions whose expiry date time is past the currentDateTime.
-
- Storage Transaction to run under.
- DateTime to expire against.
- Returns the number of transactions expired.
-
-
-
- Expire messages that are past their expiration date.
-
- Date used to validate expiration date against. Also to be used as the close datetime.
- Number of messages updated.
-
-
-
- Close message that are beyond their retry count.
-
- DateTime to use a close datetime.
- Number of messages closed.
-
-
-
- Dequeue the next message in the queue and flag the message with the transaction id.
-
- The transaction id to add to the message.
- The queue to pull the message frrom.
- Message object or null of no message to pull.
-
-
-
- View the next message in the queue, without removing it from queue.
-
- The queue to pull the message from.
- Message object or null of no message to pull.
-
-
-
- View a message by the message ID.
-
- The ID of the message to view.
- Message object or null of no message to view.
-
-
-
- Represents a transaction used by the storage (usually a database transaction).
-
-
-
-
- Commits the transaction, usually this reprents a database transaction.
-
-
-
-
- Rollsback the transaction, usually this reprents a database transaction.
-
-
-
-
- Contains information a specific queue.
-
-
-
-
- Gets or sets queue name.
-
-
-
-
- Gets or sets queue ID.
-
-
-
-
- Options used by the queue server.
-
-
-
-
- How many minutes until a message expires. Will be overriden by the value in the message, unless it's zero.
- 0 = max message timeout. 0 in the message, means use the detault here..
-
-
-
-
- How long until a transaction expires in minutes. The value in the transaction will override this value,
- unless it zero. If this is zero as well, transactions won't expire.
-
-
-
-
- Result codes from internal API calls. This currently map directly to gRPC status codes, but
- the internal api may be used with another protocol, hence it can't depend on gRPC status codes.
- Most of these are not used by the Internal API.
-
-
-
-
- Not an error; returned on success.
-
-
-
-
- The operation was cancelled (typically by the caller).
-
-
-
-
- Unknown error. An example of where this error may be returned is if a Status
- value received from another address space belongs to an error-space that is not
- known in this address space. Also errors raised by APIs that do not return enough
- error information may be converted to this error.
-
-
-
-
- Client specified an invalid argument. Note that this differs from FAILED_PRECONDITION.
- INVALID_ARGUMENT indicates arguments that are problematic regardless of the state
- of the system (e.g., a malformed file name).
-
-
-
-
- Deadline expired before operation could complete. For operations that change
- the state of the system, this error may be returned even if the operation has
- completed successfully. For example, a successful response from a server could
- have been delayed long enough for the deadline to expire.
-
-
-
-
- Some requested entity (e.g., file or directory) was not found.
-
-
-
-
- Some entity that we attempted to create (e.g., file or directory) already exists.
-
-
-
-
- The caller does not have permission to execute the specified operation. PERMISSION_DENIED
- must not be used for rejections caused by exhausting some resource (use RESOURCE_EXHAUSTED
- instead for those errors). PERMISSION_DENIED must not be used if the caller can
- not be identified (use UNAUTHENTICATED instead for those errors).
-
-
-
-
- Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire
- file system is out of space.
-
-
-
-
- Operation was rejected because the system is not in a state required for the
- operation's execution. For example, directory to be deleted may be non-empty,
- an rmdir operation is applied to a non-directory, etc.
-
-
-
-
- The operation was aborted, typically due to a concurrency issue like sequencer
- check failures, transaction aborts, etc.
-
-
-
-
- Operation was attempted past the valid range. E.g., seeking or reading past end
- of file.
-
-
-
-
- Operation is not implemented or not supported/enabled in this service.
-
-
-
-
- Internal errors. Means some invariants expected by underlying system has been
- broken. If you see one of these errors, something is very broken.
-
-
-
-
- The service is currently unavailable. This is a most likely a transient condition
- and may be corrected by retrying with a backoff. Note that it is not always safe
- to retry non-idempotent operations.
-
-
-
-
- Unrecoverable data loss or corruption.
-
-
-
-
- The request does not have valid authentication credentials for the operation.
-
-
-
-
diff --git a/AgQueue.Postgres/AgQueue.Postgres.xml b/AgQueue.Postgres/AgQueue.Postgres.xml
deleted file mode 100644
index 311c700..0000000
--- a/AgQueue.Postgres/AgQueue.Postgres.xml
+++ /dev/null
@@ -1,137 +0,0 @@
-
-
-
- AgQueue.Postgres
-
-
-
-
- Wrapper around SQLite transaction. Used by storage classes.
-
-
-
-
- Initializes a new instance of the class.
-
- SQLite connection.
-
-
-
- Gets the internal SQLite transaction.
-
-
-
-
-
-
-
-
-
-
- Extensions on the IStorageTransaction interface.
-
-
-
-
- Converts the IStorageTransaction to a NpgsqlTransaction.
-
- The IStorageTransaction to convert.
- SqliteTransaction.
-
-
-
- Implements the IStorage interface for storing and retrieving queue date to SQLite.
-
-
-
-
- Initializes a new instance of the class.
-
- The Sqlite connection string.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Executes an anonymous method wrapped with robust logging, command line options loading, and error handling.
-
- Options class to load from command line.
- The anonymous method execute. Contains a logging object and the options object, both of which can be accessed in the anonymous method.
- Sqlite connection.
- Returns generic object T.
-
-
-
- Executes an anonymous method wrapped with robust logging, command line options loading, and error handling.
-
- Options class to load from command line.
- The anonymous method execute. Contains a logging object and the options object, both of which can be accessed in the anonymous method.
- Sqlite connection.
- Returns generic object T.
-
-
-
diff --git a/AgQueue.Postgres/dbscripts/create_db.sql b/AgQueue.Postgres/dbscripts/create_db.sql
deleted file mode 100644
index 8c1a443..0000000
--- a/AgQueue.Postgres/dbscripts/create_db.sql
+++ /dev/null
@@ -1,16 +0,0 @@
---This is run by the admin in the default database (the agqueue database will not have existed yet)
-DROP OWNED BY agqueue_user;
-DROP DATABASE IF EXISTS agqueue;
-
-DROP USER IF EXISTS agqueue_user;
-
-CREATE DATABASE agqueue;
-
-CREATE USER agqueue_user PASSWORD 'everex';
-GRANT ALL PRIVILEGES ON DATABASE agqueue to agqueue_user;
-
-SET timezone TO 'America/New_York';
-
-
-
-
diff --git a/AgQueue.Server.Common/AgQueue.Library.xml b/AgQueue.Server.Common/AgQueue.Library.xml
deleted file mode 100644
index edb0fe2..0000000
--- a/AgQueue.Server.Common/AgQueue.Library.xml
+++ /dev/null
@@ -1,251 +0,0 @@
-
-
-
- AgQueue.Server.Common
-
-
-
-
- Gets a value indicating whether an api call was successful? This should be the only way to determine if a call was successfull.
-
-
-
-
- Starting point for accessing all queue related APIS
- This is mostly a factory for creating Queues and Transactions.
-
-
- Exceptions are not used unless there is an exceptional condition. For example, if an items doesn't exist or a param is invalid,
- this is handled without an exception. This is mostly for speed and simplicity with the gRPC interface.
-
-
-
-
- Initializes a new instance of the class.
-
-
-
-
- Creates a new queue.
-
- The name of the queue.
- A Queue object.
-
-
-
- Delete a queue and all messages in the queue.
-
- Name of the queue to delete.
-
-
-
- Deletes a queue and 1) rollsback any transaction related to the queue, 2) deletes all messages in the queue.
-
- Queue id.
-
-
-
- Disposes of storage resources
-
-
-
-
- APIS's for accessing and manging queue messages.
-
-
-
-
- Initializes a new instance of the class.
-
- Storage library.
-
-
-
- Queue API from which to manage queue.
-
-
-
-
- Initializes a new instance of the class.
-
- storage engine
-
-
-
- Creates a new queue. Queue cannot already exist
-
- Name of queue to create
- The queue Id
-
-
-
- Adds a message to a queue.
-
- Queue Transaction id. All messages must be added in a transaction.
- The queue id to add the message to.
- Message object to be serialized.
- String of optional data describing the message.
- Message priority. Lower the number, the higher the priority.
- How many failures before the message will be expired.
- Datetime that the message will expire if it's not already been processed.
- Optional correlation id. ID's are defined by the calling application.
- Optional group string. Defined by calling application.
- Message ID.
-
-
-
- Result codes from internal API calls. This currently map directly to gRPC status codes, but
- the internal api may be used with another protocol, hence it can't depend on gRPC status codes.
- Most of these are not used by the Internal API.
-
-
-
-
- Not an error; returned on success.
-
-
-
-
- The operation was cancelled (typically by the caller).
-
-
-
-
- Unknown error. An example of where this error may be returned is if a Status
- value received from another address space belongs to an error-space that is not
- known in this address space. Also errors raised by APIs that do not return enough
- error information may be converted to this error.
-
-
-
-
- Client specified an invalid argument. Note that this differs from FAILED_PRECONDITION.
- INVALID_ARGUMENT indicates arguments that are problematic regardless of the state
- of the system (e.g., a malformed file name).
-
-
-
-
- Deadline expired before operation could complete. For operations that change
- the state of the system, this error may be returned even if the operation has
- completed successfully. For example, a successful response from a server could
- have been delayed long enough for the deadline to expire.
-
-
-
-
- Some requested entity (e.g., file or directory) was not found.
-
-
-
-
- Some entity that we attempted to create (e.g., file or directory) already exists.
-
-
-
-
- The caller does not have permission to execute the specified operation. PERMISSION_DENIED
- must not be used for rejections caused by exhausting some resource (use RESOURCE_EXHAUSTED
- instead for those errors). PERMISSION_DENIED must not be used if the caller can
- not be identified (use UNAUTHENTICATED instead for those errors).
-
-
-
-
- Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire
- file system is out of space.
-
-
-
-
- Operation was rejected because the system is not in a state required for the
- operation's execution. For example, directory to be deleted may be non-empty,
- an rmdir operation is applied to a non-directory, etc.
-
-
-
-
- The operation was aborted, typically due to a concurrency issue like sequencer
- check failures, transaction aborts, etc.
-
-
-
-
- Operation was attempted past the valid range. E.g., seeking or reading past end
- of file.
-
-
-
-
- Operation is not implemented or not supported/enabled in this service.
-
-
-
-
- Internal errors. Means some invariants expected by underlying system has been
- broken. If you see one of these errors, something is very broken.
-
-
-
-
- The service is currently unavailable. This is a most likely a transient condition
- and may be corrected by retrying with a backoff. Note that it is not always safe
- to retry non-idempotent operations.
-
-
-
-
- Unrecoverable data loss or corruption.
-
-
-
-
- The request does not have valid authentication credentials for the operation.
-
-
-
-
- Represents a Queue Transaction. Most message functions require a transaction
-
-
-
-
- Initializes a new instance of the class.
-
- An IStorage interface
-
-
-
- Start Queue Transaction.
-
- Queue Transaction id of the new transaction
-
-
-
- Updates the specified transaction, reseting it's timeout
-
- Queue Transaction id
- Enum detailing if update was successul
-
-
-
- Returns the message count of messages in a specific transaction. Results are unknown for closed committed or rolledback transactions.
-
- Transaction id
- Message count
-
-
-
- Commits the Queue Transaction
-
- Queue transaction id
- Was the commit successful
-
-
-
- Rollsback the Queue transaction and resets the messages states or doesn't add messages
-
- Queue transaction id
-
-
-
diff --git a/AgQueue.Sqlite/AgQueue.Sqlite.xml b/AgQueue.Sqlite/AgQueue.Sqlite.xml
deleted file mode 100644
index c401fab..0000000
--- a/AgQueue.Sqlite/AgQueue.Sqlite.xml
+++ /dev/null
@@ -1,137 +0,0 @@
-
-
-
- AgQueue.Sqlite
-
-
-
-
- Wrapper around SQLite transaction. Used by storage classes.
-
-
-
-
- Initializes a new instance of the class.
-
- SQLite connection.
-
-
-
- Gets the internal SQLite transaction.
-
-
-
-
-
-
-
-
-
-
- Extensions on the IStorageTransaction interface.
-
-
-
-
- Converts the IStorageTransaction to a SqliteTransaction.
-
- The IStorageTransaction to convert.
- SqliteTransaction.
-
-
-
- Implements the IStorage interface for storing and retriving queue date to SQLite.
-
-
-
-
- Initializes a new instance of the class.
-
- The Sqlite connection string.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Executes an anonymous method wrapped with robust logging, command line options loading, and error handling.
-
- Options class to load from command line.
- The anonymous method execute. Contains a logging object and the options object, both of which can be accessed in the anonymous method.
- Sqlite connection.
- Returns generic object T.
-
-
-
- Executes an anonymous method wrapped with robust logging, command line options loading, and error handling.
-
- Options class to load from command line.
- The anonymous method execute. Contains a logging object and the options object, both of which can be accessed in the anonymous method.
- Sqlite connection.
- Returns generic object T.
-
-
-
diff --git a/AgQueue.Common/Extensions/DateTimeExtensions.cs b/Procession.Common/Extensions/DateTimeExtensions.cs
similarity index 90%
rename from AgQueue.Common/Extensions/DateTimeExtensions.cs
rename to Procession.Common/Extensions/DateTimeExtensions.cs
index 4cc050f..368bc02 100644
--- a/AgQueue.Common/Extensions/DateTimeExtensions.cs
+++ b/Procession.Common/Extensions/DateTimeExtensions.cs
@@ -4,7 +4,7 @@
using System;
-namespace AgQueue.Common.Extensions
+namespace Procession.Common.Extensions
{
public static class DateTimeExtensions
{
diff --git a/AgQueue.Common/Extensions/ObjectExtensions.cs b/Procession.Common/Extensions/ObjectExtensions.cs
similarity index 95%
rename from AgQueue.Common/Extensions/ObjectExtensions.cs
rename to Procession.Common/Extensions/ObjectExtensions.cs
index a6a8da0..2ffbcdb 100644
--- a/AgQueue.Common/Extensions/ObjectExtensions.cs
+++ b/Procession.Common/Extensions/ObjectExtensions.cs
@@ -6,7 +6,7 @@
using System.Collections.Generic;
using System.Text;
-namespace AgQueue.Common.Extensions
+namespace Procession.Common.Extensions
{
///
/// Extensions methods for use on Objects.
diff --git a/AgQueue.Common/Extensions/StringExtensions.cs b/Procession.Common/Extensions/StringExtensions.cs
similarity index 94%
rename from AgQueue.Common/Extensions/StringExtensions.cs
rename to Procession.Common/Extensions/StringExtensions.cs
index 668c3e3..b290c5c 100644
--- a/AgQueue.Common/Extensions/StringExtensions.cs
+++ b/Procession.Common/Extensions/StringExtensions.cs
@@ -2,7 +2,7 @@
// Copyright (c) Michael Silver. All rights reserved.
//
-namespace AgQueue.Common.Extensions
+namespace Procession.Common.Extensions
{
///
/// Extensions methods to be used on stings.
diff --git a/AgQueue.Common/GlobalSuppressions.cs b/Procession.Common/GlobalSuppressions.cs
similarity index 100%
rename from AgQueue.Common/GlobalSuppressions.cs
rename to Procession.Common/GlobalSuppressions.cs
diff --git a/AgQueue.Common/IAgQueueClient.cs b/Procession.Common/IProcessionClient.cs
similarity index 54%
rename from AgQueue.Common/IAgQueueClient.cs
rename to Procession.Common/IProcessionClient.cs
index 09576e5..2dd6a36 100644
--- a/AgQueue.Common/IAgQueueClient.cs
+++ b/Procession.Common/IProcessionClient.cs
@@ -1,13 +1,13 @@
-//
+//
// Copyright (c) Michael Silver. All rights reserved.
//
-namespace AgQueue.Common
+namespace Procession.Common
{
///
/// Interface for Client to implement.
///
- public interface IAgQueueClient
+ public interface IProcessionClient
{
}
}
diff --git a/AgQueue.Common/MessageState.cs b/Procession.Common/MessageState.cs
similarity index 97%
rename from AgQueue.Common/MessageState.cs
rename to Procession.Common/MessageState.cs
index 7dd188d..af556c4 100644
--- a/AgQueue.Common/MessageState.cs
+++ b/Procession.Common/MessageState.cs
@@ -2,7 +2,7 @@
// Copyright (c) Michael Silver. All rights reserved.
//
-namespace AgQueue.Common
+namespace Procession.Common
{
///
/// Current state of a message.
diff --git a/AgQueue.Common/Models/Message.cs b/Procession.Common/Models/Message.cs
similarity index 98%
rename from AgQueue.Common/Models/Message.cs
rename to Procession.Common/Models/Message.cs
index 7d5f05d..eae94c3 100644
--- a/AgQueue.Common/Models/Message.cs
+++ b/Procession.Common/Models/Message.cs
@@ -2,7 +2,7 @@
// Copyright (c) Michael Silver. All rights reserved.
//
-namespace AgQueue.Common.Models
+namespace Procession.Common.Models
{
using System;
using System.Collections.Generic;
diff --git a/AgQueue.Common/Models/Queue.cs b/Procession.Common/Models/Queue.cs
similarity index 96%
rename from AgQueue.Common/Models/Queue.cs
rename to Procession.Common/Models/Queue.cs
index 8f3c031..cad2a09 100644
--- a/AgQueue.Common/Models/Queue.cs
+++ b/Procession.Common/Models/Queue.cs
@@ -2,7 +2,7 @@
// Copyright (c) Michael Silver. All rights reserved.
//
-namespace AgQueue.Common.Models
+namespace Procession.Common.Models
{
///
/// Represents a Queue.
diff --git a/AgQueue.Common/Models/Transaction.cs b/Procession.Common/Models/Transaction.cs
similarity index 97%
rename from AgQueue.Common/Models/Transaction.cs
rename to Procession.Common/Models/Transaction.cs
index 44b7141..d940593 100644
--- a/AgQueue.Common/Models/Transaction.cs
+++ b/Procession.Common/Models/Transaction.cs
@@ -2,7 +2,7 @@
// Copyright (c) Michael Silver. All rights reserved.
//
-namespace AgQueue.Common.Models
+namespace Procession.Common.Models
{
using System;
diff --git a/AgQueue.Common/AgQueue.Common.csproj b/Procession.Common/Procession.Common.csproj
similarity index 100%
rename from AgQueue.Common/AgQueue.Common.csproj
rename to Procession.Common/Procession.Common.csproj
diff --git a/AgQueue.Common/TransactionAction.cs b/Procession.Common/TransactionAction.cs
similarity index 96%
rename from AgQueue.Common/TransactionAction.cs
rename to Procession.Common/TransactionAction.cs
index c7b7734..e1e719c 100644
--- a/AgQueue.Common/TransactionAction.cs
+++ b/Procession.Common/TransactionAction.cs
@@ -2,7 +2,7 @@
// Copyright (c) Michael Silver. All rights reserved.
//
-namespace AgQueue.Common
+namespace Procession.Common
{
///
/// Represents the action performed within a transaction.
diff --git a/AgQueue.Common/TransactionResult.cs b/Procession.Common/TransactionResult.cs
similarity index 97%
rename from AgQueue.Common/TransactionResult.cs
rename to Procession.Common/TransactionResult.cs
index df7d132..95b7c23 100644
--- a/AgQueue.Common/TransactionResult.cs
+++ b/Procession.Common/TransactionResult.cs
@@ -2,7 +2,7 @@
// Copyright (c) Michael Silver. All rights reserved.
//
-namespace AgQueue.Common
+namespace Procession.Common
{
///
/// Result of transaction commital.
diff --git a/AgQueue.Common/TransactionState.cs b/Procession.Common/TransactionState.cs
similarity index 97%
rename from AgQueue.Common/TransactionState.cs
rename to Procession.Common/TransactionState.cs
index 502206a..faa98a9 100644
--- a/AgQueue.Common/TransactionState.cs
+++ b/Procession.Common/TransactionState.cs
@@ -6,7 +6,7 @@
using System.Collections.Generic;
using System.Text;
-namespace AgQueue.Common
+namespace Procession.Common
{
///
/// The current state of a transaction.
diff --git a/AgQueue.Common/WorkQueueException.cs b/Procession.Common/WorkQueueException.cs
similarity index 95%
rename from AgQueue.Common/WorkQueueException.cs
rename to Procession.Common/WorkQueueException.cs
index f9b7c79..0a84ab4 100644
--- a/AgQueue.Common/WorkQueueException.cs
+++ b/Procession.Common/WorkQueueException.cs
@@ -6,7 +6,7 @@
using System.Collections.Generic;
using System.Text;
-namespace AgQueue.Common
+namespace Procession.Common
{
///
/// Exception thrown for unique WorkQueue exceptions.
diff --git a/AgQueue.Common/stylecop.json b/Procession.Common/stylecop.json
similarity index 100%
rename from AgQueue.Common/stylecop.json
rename to Procession.Common/stylecop.json
diff --git a/AgQueue.GrpcServer/Interceptors/ExceptionInterceptor.cs b/Procession.GrpcServer/Interceptors/ExceptionInterceptor.cs
similarity index 95%
rename from AgQueue.GrpcServer/Interceptors/ExceptionInterceptor.cs
rename to Procession.GrpcServer/Interceptors/ExceptionInterceptor.cs
index 6f8eb25..e52fdac 100644
--- a/AgQueue.GrpcServer/Interceptors/ExceptionInterceptor.cs
+++ b/Procession.GrpcServer/Interceptors/ExceptionInterceptor.cs
@@ -5,7 +5,7 @@
using System.Linq;
using System.Threading.Tasks;
-namespace AgQueue.GrpcServer.Interceptors
+namespace Procession.GrpcServer.Interceptors
{
public class ExceptionInterceptor : Interceptor
{
diff --git a/AgQueue.GrpcServer/Interceptors/LoggingInterceptor.cs b/Procession.GrpcServer/Interceptors/LoggingInterceptor.cs
similarity index 96%
rename from AgQueue.GrpcServer/Interceptors/LoggingInterceptor.cs
rename to Procession.GrpcServer/Interceptors/LoggingInterceptor.cs
index a2c07b0..91f3a35 100644
--- a/AgQueue.GrpcServer/Interceptors/LoggingInterceptor.cs
+++ b/Procession.GrpcServer/Interceptors/LoggingInterceptor.cs
@@ -5,7 +5,7 @@
using System.Linq;
using System.Threading.Tasks;
-namespace AgQueue.GrpcServer.Interceptors
+namespace Procession.GrpcServer.Interceptors
{
public class LoggingInterceptor
{
diff --git a/AgQueue.GrpcServer/Interceptors/MetricsInterceptor.cs b/Procession.GrpcServer/Interceptors/MetricsInterceptor.cs
similarity index 94%
rename from AgQueue.GrpcServer/Interceptors/MetricsInterceptor.cs
rename to Procession.GrpcServer/Interceptors/MetricsInterceptor.cs
index 8d8d27b..8e7bb34 100644
--- a/AgQueue.GrpcServer/Interceptors/MetricsInterceptor.cs
+++ b/Procession.GrpcServer/Interceptors/MetricsInterceptor.cs
@@ -5,7 +5,7 @@
using System.Linq;
using System.Threading.Tasks;
-namespace AgQueue.GrpcServer.Interceptors
+namespace Procession.GrpcServer.Interceptors
{
public class MetricsInterceptor : Interceptor
{
diff --git a/Procession.GrpcServer/Procession.GrpcServer.csproj b/Procession.GrpcServer/Procession.GrpcServer.csproj
new file mode 100644
index 0000000..2126813
--- /dev/null
+++ b/Procession.GrpcServer/Procession.GrpcServer.csproj
@@ -0,0 +1,22 @@
+
+
+
+ net9.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/AgQueue.GrpcServer/Program.cs b/Procession.GrpcServer/Program.cs
similarity index 96%
rename from AgQueue.GrpcServer/Program.cs
rename to Procession.GrpcServer/Program.cs
index f7c4de0..8df9b11 100644
--- a/AgQueue.GrpcServer/Program.cs
+++ b/Procession.GrpcServer/Program.cs
@@ -6,7 +6,7 @@
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Hosting;
-namespace AgQueue.GrpcServer
+namespace Procession.GrpcServer
{
public class Program
{
diff --git a/AgQueue.GrpcServer/Properties/launchSettings.json b/Procession.GrpcServer/Properties/launchSettings.json
similarity index 100%
rename from AgQueue.GrpcServer/Properties/launchSettings.json
rename to Procession.GrpcServer/Properties/launchSettings.json
diff --git a/AgQueue.GrpcServer/Services/AgQueueService.cs b/Procession.GrpcServer/Services/ProcessionService.cs
similarity index 96%
rename from AgQueue.GrpcServer/Services/AgQueueService.cs
rename to Procession.GrpcServer/Services/ProcessionService.cs
index f6467a5..cb9163c 100644
--- a/AgQueue.GrpcServer/Services/AgQueueService.cs
+++ b/Procession.GrpcServer/Services/ProcessionService.cs
@@ -4,21 +4,21 @@
using System.Threading.Tasks;
using Grpc.Core;
using Microsoft.Extensions.Logging;
-using AgQueue.Common.Extensions;
-using AgQueue.Server.Common;
-using AgQueue.Models;
-using AgQueue.Common;
+using Procession.Common.Extensions;
+using Procession.Server.Common;
+using Procession.Models;
+using Procession.Common;
using Google.Protobuf.WellKnownTypes;
using Google.Protobuf;
-namespace AgQueue.GrpcServer
+namespace Procession.GrpcServer
{
- public partial class AgQueueService : QueueApi.QueueApiBase
+ public partial class ProcessionService : QueueApi.QueueApiBase
{
- private readonly ILogger _logger;
+ private readonly ILogger _logger;
private readonly InternalApi internalApi;
- public AgQueueService(ILogger logger, InternalApi internalApi)
+ public ProcessionService(ILogger logger, InternalApi internalApi)
{
_logger = logger;
this.internalApi = internalApi;
diff --git a/AgQueue.GrpcServer/Startup.cs b/Procession.GrpcServer/Startup.cs
similarity index 89%
rename from AgQueue.GrpcServer/Startup.cs
rename to Procession.GrpcServer/Startup.cs
index ad371f7..7ffb8c1 100644
--- a/AgQueue.GrpcServer/Startup.cs
+++ b/Procession.GrpcServer/Startup.cs
@@ -8,12 +8,12 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
-using AgQueue.Common;
-using AgQueue.GrpcServer.Interceptors;
-using AgQueue.Server.Common;
-using AgQueue.Sqlite;
+using Procession.Common;
+using Procession.GrpcServer.Interceptors;
+using Procession.Server.Common;
+using Procession.Sqlite;
-namespace AgQueue.GrpcServer
+namespace Procession.GrpcServer
{
public class Startup
{
@@ -45,7 +45,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
app.UseEndpoints(endpoints =>
{
- endpoints.MapGrpcService();
+ endpoints.MapGrpcService();
endpoints.MapGet("/", async context =>
{
diff --git a/AgQueue.GrpcServer/appsettings.Development.json b/Procession.GrpcServer/appsettings.Development.json
similarity index 100%
rename from AgQueue.GrpcServer/appsettings.Development.json
rename to Procession.GrpcServer/appsettings.Development.json
diff --git a/AgQueue.GrpcServer/appsettings.json b/Procession.GrpcServer/appsettings.json
similarity index 100%
rename from AgQueue.GrpcServer/appsettings.json
rename to Procession.GrpcServer/appsettings.json
diff --git a/AgQueue.Models/AgQueue.Models.csproj b/Procession.Models/Procession.Models.csproj
similarity index 90%
rename from AgQueue.Models/AgQueue.Models.csproj
rename to Procession.Models/Procession.Models.csproj
index 905daeb..ab04a80 100644
--- a/AgQueue.Models/AgQueue.Models.csproj
+++ b/Procession.Models/Procession.Models.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/AgQueue.Models/AgQueue.cs b/Procession.Models/Procession.cs
similarity index 92%
rename from AgQueue.Models/AgQueue.cs
rename to Procession.Models/Procession.cs
index 84f3674..cd4fbfe 100644
--- a/AgQueue.Models/AgQueue.cs
+++ b/Procession.Models/Procession.cs
@@ -1,6 +1,6 @@
//
// Generated by the protocol buffer compiler. DO NOT EDIT!
-// source: AgQueue.proto
+// source: Procession.proto
//
#pragma warning disable 1591, 0612, 3021, 8981
#region Designer generated code
@@ -9,122 +9,122 @@
using pbc = global::Google.Protobuf.Collections;
using pbr = global::Google.Protobuf.Reflection;
using scg = global::System.Collections.Generic;
-namespace AgQueue.Models {
+namespace Procession.Models {
- /// Holder for reflection information generated from AgQueue.proto
- public static partial class AgQueueReflection {
+ /// Holder for reflection information generated from Procession.proto
+ public static partial class ProcessionReflection {
#region Descriptor
- /// File descriptor for AgQueue.proto
+ /// File descriptor for Procession.proto
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
- static AgQueueReflection() {
+ static ProcessionReflection() {
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
- "Cg1BZ1F1ZXVlLnByb3RvEgVncmVldBofZ29vZ2xlL3Byb3RvYnVmL3RpbWVz",
- "dGFtcC5wcm90byJPChRHZXRRdWV1ZUluZm9SZXNwb25zZRITCgtSZWNvcmRG",
- "b3VuZBgBIAEoCBIPCgdRdWV1ZUlkGAIgASgDEhEKCVF1ZXVlTmFtZRgDIAEo",
- "CSIuChlHZXRRdWV1ZUluZm9CeU5hbWVSZXF1ZXN0EhEKCVF1ZXVlTmFtZRgB",
- "IAEoCSIqChdHZXRRdWV1ZUluZm9CeUlkUmVxdWVzdBIPCgdRdWV1ZUlkGAEg",
- "ASgDIicKEkNyZWF0ZVF1ZXVlUmVxdWVzdBIRCglRdWV1ZU5hbWUYASABKAki",
- "OQoTQ3JlYXRlUXVldWVSZXNwb25zZRIPCgdRdWV1ZUlkGAEgASgDEhEKCVF1",
- "ZXVlTmFtZRgCIAEoCSI2ChhJbml0aWFsaXplU3RvcmFnZVJlcXVlc3QSGgoS",
- "RGVsZXRlRXhpc3RpbmdEYXRhGAEgASgIIhsKGUluaXRpYWxpemVTdG9yYWdl",
- "UmVzcG9uc2UiKQoWRGVsZXRlUXVldWVCeUlkUmVxdWVzdBIPCgdRdWV1ZUlk",
- "GAEgASgDIhkKF0RlbGV0ZVF1ZXVlQnlJZFJlc3BvbnNlIi0KGERlbGV0ZVF1",
- "ZXVlQnlOYW1lUmVxdWVzdBIRCglRdWV1ZU5hbWUYASABKAkiGwoZRGVsZXRl",
- "UXVldWVCeU5hbWVSZXNwb25zZSIuChdTdGFydFRyYW5zYWN0aW9uUmVxdWVz",
- "dBITCgtFeHBpcmVJbk1pbhgBIAEoBSIrChhTdGFydFRyYW5zYWN0aW9uUmVz",
- "cG9uc2USDwoHVHJhbnNJZBgBIAEoAyIrChhDb21taXRUcmFuc2FjdGlvblJl",
- "cXVlc3QSDwoHVHJhbnNJZBgBIAEoAyJKChlDb21taXRUcmFuc2FjdGlvblJl",
- "c3BvbnNlEhUKDU1lc3NhZ2VzQWRkZWQYASABKAUSFgoOTWVzc2FnZXNQdWxs",
- "ZWQYAiABKAUiLQoaUm9sbGJhY2tUcmFuc2FjdGlvblJlcXVlc3QSDwoHVHJh",
- "bnNJZBgBIAEoAyIdChtSb2xsYmFja1RyYW5zYWN0aW9uUmVzcG9uc2UiWgoT",
- "UXVldWVNZXNzYWdlUmVxdWVzdBIPCgdUcmFuc0lkGAEgASgDEg8KB1F1ZXVl",
- "SWQYAiABKAMSIQoHTWVzc2FnZRgDIAEoCzIQLmdyZWV0Lk1lc3NhZ2VJbiKY",
- "AQoJTWVzc2FnZUluEg8KB1BheWxvYWQYAiABKAwSEAoITWV0YURhdGEYAyAB",
- "KAkSEAoIUHJpb3JpdHkYBCABKAUSEwoLTWF4QXR0ZW1wdHMYBSABKAUSFwoP",
- "RXhwaXJ5SW5NaW51dGVzGAYgASgFEhUKDUNvcnJlbGF0aW9uSWQYByABKAUS",
- "EQoJR3JvdXBOYW1lGAggASgJIt4CCgpNZXNzYWdlT3V0EgoKAklkGAEgASgD",
- "Eg8KB1F1ZXVlSWQYAiABKAMSDwoHUGF5bG9hZBgDIAEoDBIQCghNZXRhRGF0",
- "YRgEIAEoCRIQCghQcmlvcml0eRgFIAEoBRITCgtNYXhBdHRlbXB0cxgGIAEo",
- "BRIQCghBdHRlbXB0cxgHIAEoBRIWCg5FeHBpcnlEYXRlVGltZRgIIAEoAxIV",
- "Cg1Db3JyZWxhdGlvbklkGAkgASgFEhEKCUdyb3VwTmFtZRgKIAEoCRIpCgxN",
- "ZXNzYWdlU3RhdGUYCyABKA4yEy5ncmVldC5NZXNzYWdlU3RhdGUSEwoLQWRk",
- "RGF0ZVRpbWUYDCABKAMSFQoNQ2xvc2VEYXRlVGltZRgNIAEoAxIPCgdUcmFu",
- "c0lkGA4gASgDEi0KC1RyYW5zQWN0aW9uGA8gASgOMhguZ3JlZXQuVHJhbnNh",
- "Y3Rpb25BY3Rpb24iOgoUUXVldWVNZXNzYWdlUmVzcG9uc2USDwoHVHJhbnNJ",
- "ZBgBIAEoAxIRCglNZXNzYWdlSWQYAiABKAMiOQoVRGVxdWV1ZU1lc3NhZ2VS",
- "ZXF1ZXN0Eg8KB1F1ZXVlSWQYASABKAMSDwoHVHJhbnNJZBgCIAEoAyJjChZE",
- "ZXF1ZXVlTWVzc2FnZVJlc3BvbnNlEg8KB1RyYW5zSWQYASABKAMSFAoMTWVz",
- "c2FnZUZvdW5kGAIgASgIEiIKB01lc3NhZ2UYAyABKAsyES5ncmVldC5NZXNz",
- "YWdlT3V0IiwKGVBlZWtNZXNzYWdlQnlRdWV1ZVJlcXVlc3QSDwoHUXVldWVJ",
- "ZBgBIAEoAyJAChpQZWVrTWVzc2FnZUJ5UXVldWVSZXNwb25zZRIiCgdNZXNz",
- "YWdlGAEgASgLMhEuZ3JlZXQuTWVzc2FnZU91dCIrChZQZWVrTWVzc2FnZUJ5",
- "SWRSZXF1ZXN0EhEKCU1lc3NhZ2VJZBgBIAEoAyI9ChdQZWVrTWVzc2FnZUJ5",
- "SWRSZXNwb25zZRIiCgdNZXNzYWdlGAEgASgLMhEuZ3JlZXQuTWVzc2FnZU91",
- "dCpsCgxNZXNzYWdlU3RhdGUSCwoHVW5rbm93bhAAEgoKBkFjdGl2ZRABEhEK",
- "DUluVHJhbnNhY3Rpb24QAhINCglQcm9jZXNzZWQQAxILCgdFeHBpcmVkEAQS",
- "FAoQQXR0ZW1wdHNFeGNlZWRlZBAFKjAKEVRyYW5zYWN0aW9uQWN0aW9uEggK",
- "BE5vbmUQABIHCgNBZGQQARIICgRQdWxsEAIyxwgKCFF1ZXVlQXBpEkQKC0Ny",
- "ZWF0ZVF1ZXVlEhkuZ3JlZXQuQ3JlYXRlUXVldWVSZXF1ZXN0GhouZ3JlZXQu",
- "Q3JlYXRlUXVldWVSZXNwb25zZRJWChFJbml0aWFsaXplU3RvcmFnZRIfLmdy",
- "ZWV0LkluaXRpYWxpemVTdG9yYWdlUmVxdWVzdBogLmdyZWV0LkluaXRpYWxp",
- "emVTdG9yYWdlUmVzcG9uc2USUAoPRGVsZXRlUXVldWVCeUlkEh0uZ3JlZXQu",
- "RGVsZXRlUXVldWVCeUlkUmVxdWVzdBoeLmdyZWV0LkRlbGV0ZVF1ZXVlQnlJ",
- "ZFJlc3BvbnNlElYKEURlbGV0ZVF1ZXVlQnlOYW1lEh8uZ3JlZXQuRGVsZXRl",
- "UXVldWVCeU5hbWVSZXF1ZXN0GiAuZ3JlZXQuRGVsZXRlUXVldWVCeU5hbWVS",
- "ZXNwb25zZRJPChBHZXRRdWV1ZUluZm9CeUlkEh4uZ3JlZXQuR2V0UXVldWVJ",
- "bmZvQnlJZFJlcXVlc3QaGy5ncmVldC5HZXRRdWV1ZUluZm9SZXNwb25zZRJT",
- "ChJHZXRRdWV1ZUluZm9CeU5hbWUSIC5ncmVldC5HZXRRdWV1ZUluZm9CeU5h",
- "bWVSZXF1ZXN0GhsuZ3JlZXQuR2V0UXVldWVJbmZvUmVzcG9uc2USUwoQU3Rh",
- "cnRUcmFuc2FjdGlvbhIeLmdyZWV0LlN0YXJ0VHJhbnNhY3Rpb25SZXF1ZXN0",
- "Gh8uZ3JlZXQuU3RhcnRUcmFuc2FjdGlvblJlc3BvbnNlElYKEUNvbW1pdFRy",
- "YW5zYWN0aW9uEh8uZ3JlZXQuQ29tbWl0VHJhbnNhY3Rpb25SZXF1ZXN0GiAu",
- "Z3JlZXQuQ29tbWl0VHJhbnNhY3Rpb25SZXNwb25zZRJbChJSb2xsYmFja1Ry",
- "YW5hY3Rpb24SIS5ncmVldC5Sb2xsYmFja1RyYW5zYWN0aW9uUmVxdWVzdBoi",
- "LmdyZWV0LlJvbGxiYWNrVHJhbnNhY3Rpb25SZXNwb25zZRJHCgxRdWV1ZU1l",
- "c3NhZ2USGi5ncmVldC5RdWV1ZU1lc3NhZ2VSZXF1ZXN0GhsuZ3JlZXQuUXVl",
- "dWVNZXNzYWdlUmVzcG9uc2USTQoORGVxdWV1ZU1lc3NhZ2USHC5ncmVldC5E",
- "ZXF1ZXVlTWVzc2FnZVJlcXVlc3QaHS5ncmVldC5EZXF1ZXVlTWVzc2FnZVJl",
- "c3BvbnNlElkKElBlZWtNZXNzYWdlQnlRdWV1ZRIgLmdyZWV0LlBlZWtNZXNz",
- "YWdlQnlRdWV1ZVJlcXVlc3QaIS5ncmVldC5QZWVrTWVzc2FnZUJ5UXVldWVS",
- "ZXNwb25zZRJQCg9QZWVrTWVzc2FnZUJ5SWQSHS5ncmVldC5QZWVrTWVzc2Fn",
- "ZUJ5SWRSZXF1ZXN0Gh4uZ3JlZXQuUGVla01lc3NhZ2VCeUlkUmVzcG9uc2VC",
- "EaoCDkFnUXVldWUuTW9kZWxzYgZwcm90bzM="));
+ "ChBQcm9jZXNzaW9uLnByb3RvEgVncmVldBofZ29vZ2xlL3Byb3RvYnVmL3Rp",
+ "bWVzdGFtcC5wcm90byJPChRHZXRRdWV1ZUluZm9SZXNwb25zZRITCgtSZWNv",
+ "cmRGb3VuZBgBIAEoCBIPCgdRdWV1ZUlkGAIgASgDEhEKCVF1ZXVlTmFtZRgD",
+ "IAEoCSIuChlHZXRRdWV1ZUluZm9CeU5hbWVSZXF1ZXN0EhEKCVF1ZXVlTmFt",
+ "ZRgBIAEoCSIqChdHZXRRdWV1ZUluZm9CeUlkUmVxdWVzdBIPCgdRdWV1ZUlk",
+ "GAEgASgDIicKEkNyZWF0ZVF1ZXVlUmVxdWVzdBIRCglRdWV1ZU5hbWUYASAB",
+ "KAkiOQoTQ3JlYXRlUXVldWVSZXNwb25zZRIPCgdRdWV1ZUlkGAEgASgDEhEK",
+ "CVF1ZXVlTmFtZRgCIAEoCSI2ChhJbml0aWFsaXplU3RvcmFnZVJlcXVlc3QS",
+ "GgoSRGVsZXRlRXhpc3RpbmdEYXRhGAEgASgIIhsKGUluaXRpYWxpemVTdG9y",
+ "YWdlUmVzcG9uc2UiKQoWRGVsZXRlUXVldWVCeUlkUmVxdWVzdBIPCgdRdWV1",
+ "ZUlkGAEgASgDIhkKF0RlbGV0ZVF1ZXVlQnlJZFJlc3BvbnNlIi0KGERlbGV0",
+ "ZVF1ZXVlQnlOYW1lUmVxdWVzdBIRCglRdWV1ZU5hbWUYASABKAkiGwoZRGVs",
+ "ZXRlUXVldWVCeU5hbWVSZXNwb25zZSIuChdTdGFydFRyYW5zYWN0aW9uUmVx",
+ "dWVzdBITCgtFeHBpcmVJbk1pbhgBIAEoBSIrChhTdGFydFRyYW5zYWN0aW9u",
+ "UmVzcG9uc2USDwoHVHJhbnNJZBgBIAEoAyIrChhDb21taXRUcmFuc2FjdGlv",
+ "blJlcXVlc3QSDwoHVHJhbnNJZBgBIAEoAyJKChlDb21taXRUcmFuc2FjdGlv",
+ "blJlc3BvbnNlEhUKDU1lc3NhZ2VzQWRkZWQYASABKAUSFgoOTWVzc2FnZXNQ",
+ "dWxsZWQYAiABKAUiLQoaUm9sbGJhY2tUcmFuc2FjdGlvblJlcXVlc3QSDwoH",
+ "VHJhbnNJZBgBIAEoAyIdChtSb2xsYmFja1RyYW5zYWN0aW9uUmVzcG9uc2Ui",
+ "WgoTUXVldWVNZXNzYWdlUmVxdWVzdBIPCgdUcmFuc0lkGAEgASgDEg8KB1F1",
+ "ZXVlSWQYAiABKAMSIQoHTWVzc2FnZRgDIAEoCzIQLmdyZWV0Lk1lc3NhZ2VJ",
+ "biKYAQoJTWVzc2FnZUluEg8KB1BheWxvYWQYAiABKAwSEAoITWV0YURhdGEY",
+ "AyABKAkSEAoIUHJpb3JpdHkYBCABKAUSEwoLTWF4QXR0ZW1wdHMYBSABKAUS",
+ "FwoPRXhwaXJ5SW5NaW51dGVzGAYgASgFEhUKDUNvcnJlbGF0aW9uSWQYByAB",
+ "KAUSEQoJR3JvdXBOYW1lGAggASgJIt4CCgpNZXNzYWdlT3V0EgoKAklkGAEg",
+ "ASgDEg8KB1F1ZXVlSWQYAiABKAMSDwoHUGF5bG9hZBgDIAEoDBIQCghNZXRh",
+ "RGF0YRgEIAEoCRIQCghQcmlvcml0eRgFIAEoBRITCgtNYXhBdHRlbXB0cxgG",
+ "IAEoBRIQCghBdHRlbXB0cxgHIAEoBRIWCg5FeHBpcnlEYXRlVGltZRgIIAEo",
+ "AxIVCg1Db3JyZWxhdGlvbklkGAkgASgFEhEKCUdyb3VwTmFtZRgKIAEoCRIp",
+ "CgxNZXNzYWdlU3RhdGUYCyABKA4yEy5ncmVldC5NZXNzYWdlU3RhdGUSEwoL",
+ "QWRkRGF0ZVRpbWUYDCABKAMSFQoNQ2xvc2VEYXRlVGltZRgNIAEoAxIPCgdU",
+ "cmFuc0lkGA4gASgDEi0KC1RyYW5zQWN0aW9uGA8gASgOMhguZ3JlZXQuVHJh",
+ "bnNhY3Rpb25BY3Rpb24iOgoUUXVldWVNZXNzYWdlUmVzcG9uc2USDwoHVHJh",
+ "bnNJZBgBIAEoAxIRCglNZXNzYWdlSWQYAiABKAMiOQoVRGVxdWV1ZU1lc3Nh",
+ "Z2VSZXF1ZXN0Eg8KB1F1ZXVlSWQYASABKAMSDwoHVHJhbnNJZBgCIAEoAyJj",
+ "ChZEZXF1ZXVlTWVzc2FnZVJlc3BvbnNlEg8KB1RyYW5zSWQYASABKAMSFAoM",
+ "TWVzc2FnZUZvdW5kGAIgASgIEiIKB01lc3NhZ2UYAyABKAsyES5ncmVldC5N",
+ "ZXNzYWdlT3V0IiwKGVBlZWtNZXNzYWdlQnlRdWV1ZVJlcXVlc3QSDwoHUXVl",
+ "dWVJZBgBIAEoAyJAChpQZWVrTWVzc2FnZUJ5UXVldWVSZXNwb25zZRIiCgdN",
+ "ZXNzYWdlGAEgASgLMhEuZ3JlZXQuTWVzc2FnZU91dCIrChZQZWVrTWVzc2Fn",
+ "ZUJ5SWRSZXF1ZXN0EhEKCU1lc3NhZ2VJZBgBIAEoAyI9ChdQZWVrTWVzc2Fn",
+ "ZUJ5SWRSZXNwb25zZRIiCgdNZXNzYWdlGAEgASgLMhEuZ3JlZXQuTWVzc2Fn",
+ "ZU91dCpsCgxNZXNzYWdlU3RhdGUSCwoHVW5rbm93bhAAEgoKBkFjdGl2ZRAB",
+ "EhEKDUluVHJhbnNhY3Rpb24QAhINCglQcm9jZXNzZWQQAxILCgdFeHBpcmVk",
+ "EAQSFAoQQXR0ZW1wdHNFeGNlZWRlZBAFKjAKEVRyYW5zYWN0aW9uQWN0aW9u",
+ "EggKBE5vbmUQABIHCgNBZGQQARIICgRQdWxsEAIyxwgKCFF1ZXVlQXBpEkQK",
+ "C0NyZWF0ZVF1ZXVlEhkuZ3JlZXQuQ3JlYXRlUXVldWVSZXF1ZXN0GhouZ3Jl",
+ "ZXQuQ3JlYXRlUXVldWVSZXNwb25zZRJWChFJbml0aWFsaXplU3RvcmFnZRIf",
+ "LmdyZWV0LkluaXRpYWxpemVTdG9yYWdlUmVxdWVzdBogLmdyZWV0LkluaXRp",
+ "YWxpemVTdG9yYWdlUmVzcG9uc2USUAoPRGVsZXRlUXVldWVCeUlkEh0uZ3Jl",
+ "ZXQuRGVsZXRlUXVldWVCeUlkUmVxdWVzdBoeLmdyZWV0LkRlbGV0ZVF1ZXVl",
+ "QnlJZFJlc3BvbnNlElYKEURlbGV0ZVF1ZXVlQnlOYW1lEh8uZ3JlZXQuRGVs",
+ "ZXRlUXVldWVCeU5hbWVSZXF1ZXN0GiAuZ3JlZXQuRGVsZXRlUXVldWVCeU5h",
+ "bWVSZXNwb25zZRJPChBHZXRRdWV1ZUluZm9CeUlkEh4uZ3JlZXQuR2V0UXVl",
+ "dWVJbmZvQnlJZFJlcXVlc3QaGy5ncmVldC5HZXRRdWV1ZUluZm9SZXNwb25z",
+ "ZRJTChJHZXRRdWV1ZUluZm9CeU5hbWUSIC5ncmVldC5HZXRRdWV1ZUluZm9C",
+ "eU5hbWVSZXF1ZXN0GhsuZ3JlZXQuR2V0UXVldWVJbmZvUmVzcG9uc2USUwoQ",
+ "U3RhcnRUcmFuc2FjdGlvbhIeLmdyZWV0LlN0YXJ0VHJhbnNhY3Rpb25SZXF1",
+ "ZXN0Gh8uZ3JlZXQuU3RhcnRUcmFuc2FjdGlvblJlc3BvbnNlElYKEUNvbW1p",
+ "dFRyYW5zYWN0aW9uEh8uZ3JlZXQuQ29tbWl0VHJhbnNhY3Rpb25SZXF1ZXN0",
+ "GiAuZ3JlZXQuQ29tbWl0VHJhbnNhY3Rpb25SZXNwb25zZRJbChJSb2xsYmFj",
+ "a1RyYW5hY3Rpb24SIS5ncmVldC5Sb2xsYmFja1RyYW5zYWN0aW9uUmVxdWVz",
+ "dBoiLmdyZWV0LlJvbGxiYWNrVHJhbnNhY3Rpb25SZXNwb25zZRJHCgxRdWV1",
+ "ZU1lc3NhZ2USGi5ncmVldC5RdWV1ZU1lc3NhZ2VSZXF1ZXN0GhsuZ3JlZXQu",
+ "UXVldWVNZXNzYWdlUmVzcG9uc2USTQoORGVxdWV1ZU1lc3NhZ2USHC5ncmVl",
+ "dC5EZXF1ZXVlTWVzc2FnZVJlcXVlc3QaHS5ncmVldC5EZXF1ZXVlTWVzc2Fn",
+ "ZVJlc3BvbnNlElkKElBlZWtNZXNzYWdlQnlRdWV1ZRIgLmdyZWV0LlBlZWtN",
+ "ZXNzYWdlQnlRdWV1ZVJlcXVlc3QaIS5ncmVldC5QZWVrTWVzc2FnZUJ5UXVl",
+ "dWVSZXNwb25zZRJQCg9QZWVrTWVzc2FnZUJ5SWQSHS5ncmVldC5QZWVrTWVz",
+ "c2FnZUJ5SWRSZXF1ZXN0Gh4uZ3JlZXQuUGVla01lc3NhZ2VCeUlkUmVzcG9u",
+ "c2VCFKoCEVByb2Nlc3Npb24uTW9kZWxzYgZwcm90bzM="));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { global::Google.Protobuf.WellKnownTypes.TimestampReflection.Descriptor, },
- new pbr::GeneratedClrTypeInfo(new[] {typeof(global::AgQueue.Models.MessageState), typeof(global::AgQueue.Models.TransactionAction), }, null, new pbr::GeneratedClrTypeInfo[] {
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.GetQueueInfoResponse), global::AgQueue.Models.GetQueueInfoResponse.Parser, new[]{ "RecordFound", "QueueId", "QueueName" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.GetQueueInfoByNameRequest), global::AgQueue.Models.GetQueueInfoByNameRequest.Parser, new[]{ "QueueName" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.GetQueueInfoByIdRequest), global::AgQueue.Models.GetQueueInfoByIdRequest.Parser, new[]{ "QueueId" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.CreateQueueRequest), global::AgQueue.Models.CreateQueueRequest.Parser, new[]{ "QueueName" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.CreateQueueResponse), global::AgQueue.Models.CreateQueueResponse.Parser, new[]{ "QueueId", "QueueName" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.InitializeStorageRequest), global::AgQueue.Models.InitializeStorageRequest.Parser, new[]{ "DeleteExistingData" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.InitializeStorageResponse), global::AgQueue.Models.InitializeStorageResponse.Parser, null, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.DeleteQueueByIdRequest), global::AgQueue.Models.DeleteQueueByIdRequest.Parser, new[]{ "QueueId" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.DeleteQueueByIdResponse), global::AgQueue.Models.DeleteQueueByIdResponse.Parser, null, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.DeleteQueueByNameRequest), global::AgQueue.Models.DeleteQueueByNameRequest.Parser, new[]{ "QueueName" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.DeleteQueueByNameResponse), global::AgQueue.Models.DeleteQueueByNameResponse.Parser, null, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.StartTransactionRequest), global::AgQueue.Models.StartTransactionRequest.Parser, new[]{ "ExpireInMin" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.StartTransactionResponse), global::AgQueue.Models.StartTransactionResponse.Parser, new[]{ "TransId" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.CommitTransactionRequest), global::AgQueue.Models.CommitTransactionRequest.Parser, new[]{ "TransId" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.CommitTransactionResponse), global::AgQueue.Models.CommitTransactionResponse.Parser, new[]{ "MessagesAdded", "MessagesPulled" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.RollbackTransactionRequest), global::AgQueue.Models.RollbackTransactionRequest.Parser, new[]{ "TransId" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.RollbackTransactionResponse), global::AgQueue.Models.RollbackTransactionResponse.Parser, null, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.QueueMessageRequest), global::AgQueue.Models.QueueMessageRequest.Parser, new[]{ "TransId", "QueueId", "Message" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.MessageIn), global::AgQueue.Models.MessageIn.Parser, new[]{ "Payload", "MetaData", "Priority", "MaxAttempts", "ExpiryInMinutes", "CorrelationId", "GroupName" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.MessageOut), global::AgQueue.Models.MessageOut.Parser, new[]{ "Id", "QueueId", "Payload", "MetaData", "Priority", "MaxAttempts", "Attempts", "ExpiryDateTime", "CorrelationId", "GroupName", "MessageState", "AddDateTime", "CloseDateTime", "TransId", "TransAction" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.QueueMessageResponse), global::AgQueue.Models.QueueMessageResponse.Parser, new[]{ "TransId", "MessageId" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.DequeueMessageRequest), global::AgQueue.Models.DequeueMessageRequest.Parser, new[]{ "QueueId", "TransId" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.DequeueMessageResponse), global::AgQueue.Models.DequeueMessageResponse.Parser, new[]{ "TransId", "MessageFound", "Message" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.PeekMessageByQueueRequest), global::AgQueue.Models.PeekMessageByQueueRequest.Parser, new[]{ "QueueId" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.PeekMessageByQueueResponse), global::AgQueue.Models.PeekMessageByQueueResponse.Parser, new[]{ "Message" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.PeekMessageByIdRequest), global::AgQueue.Models.PeekMessageByIdRequest.Parser, new[]{ "MessageId" }, null, null, null, null),
- new pbr::GeneratedClrTypeInfo(typeof(global::AgQueue.Models.PeekMessageByIdResponse), global::AgQueue.Models.PeekMessageByIdResponse.Parser, new[]{ "Message" }, null, null, null, null)
+ new pbr::GeneratedClrTypeInfo(new[] {typeof(global::Procession.Models.MessageState), typeof(global::Procession.Models.TransactionAction), }, null, new pbr::GeneratedClrTypeInfo[] {
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.GetQueueInfoResponse), global::Procession.Models.GetQueueInfoResponse.Parser, new[]{ "RecordFound", "QueueId", "QueueName" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.GetQueueInfoByNameRequest), global::Procession.Models.GetQueueInfoByNameRequest.Parser, new[]{ "QueueName" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.GetQueueInfoByIdRequest), global::Procession.Models.GetQueueInfoByIdRequest.Parser, new[]{ "QueueId" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.CreateQueueRequest), global::Procession.Models.CreateQueueRequest.Parser, new[]{ "QueueName" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.CreateQueueResponse), global::Procession.Models.CreateQueueResponse.Parser, new[]{ "QueueId", "QueueName" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.InitializeStorageRequest), global::Procession.Models.InitializeStorageRequest.Parser, new[]{ "DeleteExistingData" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.InitializeStorageResponse), global::Procession.Models.InitializeStorageResponse.Parser, null, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.DeleteQueueByIdRequest), global::Procession.Models.DeleteQueueByIdRequest.Parser, new[]{ "QueueId" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.DeleteQueueByIdResponse), global::Procession.Models.DeleteQueueByIdResponse.Parser, null, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.DeleteQueueByNameRequest), global::Procession.Models.DeleteQueueByNameRequest.Parser, new[]{ "QueueName" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.DeleteQueueByNameResponse), global::Procession.Models.DeleteQueueByNameResponse.Parser, null, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.StartTransactionRequest), global::Procession.Models.StartTransactionRequest.Parser, new[]{ "ExpireInMin" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.StartTransactionResponse), global::Procession.Models.StartTransactionResponse.Parser, new[]{ "TransId" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.CommitTransactionRequest), global::Procession.Models.CommitTransactionRequest.Parser, new[]{ "TransId" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.CommitTransactionResponse), global::Procession.Models.CommitTransactionResponse.Parser, new[]{ "MessagesAdded", "MessagesPulled" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.RollbackTransactionRequest), global::Procession.Models.RollbackTransactionRequest.Parser, new[]{ "TransId" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.RollbackTransactionResponse), global::Procession.Models.RollbackTransactionResponse.Parser, null, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.QueueMessageRequest), global::Procession.Models.QueueMessageRequest.Parser, new[]{ "TransId", "QueueId", "Message" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.MessageIn), global::Procession.Models.MessageIn.Parser, new[]{ "Payload", "MetaData", "Priority", "MaxAttempts", "ExpiryInMinutes", "CorrelationId", "GroupName" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.MessageOut), global::Procession.Models.MessageOut.Parser, new[]{ "Id", "QueueId", "Payload", "MetaData", "Priority", "MaxAttempts", "Attempts", "ExpiryDateTime", "CorrelationId", "GroupName", "MessageState", "AddDateTime", "CloseDateTime", "TransId", "TransAction" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.QueueMessageResponse), global::Procession.Models.QueueMessageResponse.Parser, new[]{ "TransId", "MessageId" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.DequeueMessageRequest), global::Procession.Models.DequeueMessageRequest.Parser, new[]{ "QueueId", "TransId" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.DequeueMessageResponse), global::Procession.Models.DequeueMessageResponse.Parser, new[]{ "TransId", "MessageFound", "Message" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.PeekMessageByQueueRequest), global::Procession.Models.PeekMessageByQueueRequest.Parser, new[]{ "QueueId" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.PeekMessageByQueueResponse), global::Procession.Models.PeekMessageByQueueResponse.Parser, new[]{ "Message" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.PeekMessageByIdRequest), global::Procession.Models.PeekMessageByIdRequest.Parser, new[]{ "MessageId" }, null, null, null, null),
+ new pbr::GeneratedClrTypeInfo(typeof(global::Procession.Models.PeekMessageByIdResponse), global::Procession.Models.PeekMessageByIdResponse.Parser, new[]{ "Message" }, null, null, null, null)
}));
}
#endregion
@@ -164,7 +164,7 @@ public sealed partial class GetQueueInfoResponse : pb::IMessageField number for the "Message" field.
public const int MessageFieldNumber = 3;
- private global::AgQueue.Models.MessageIn message_;
+ private global::Procession.Models.MessageIn message_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
- public global::AgQueue.Models.MessageIn Message {
+ public global::Procession.Models.MessageIn Message {
get { return message_; }
set {
message_ = value;
@@ -3729,7 +3729,7 @@ public void MergeFrom(QueueMessageRequest other) {
}
if (other.message_ != null) {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageIn();
+ Message = new global::Procession.Models.MessageIn();
}
Message.MergeFrom(other.Message);
}
@@ -3762,7 +3762,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
case 26: {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageIn();
+ Message = new global::Procession.Models.MessageIn();
}
input.ReadMessage(Message);
break;
@@ -3796,7 +3796,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
case 26: {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageIn();
+ Message = new global::Procession.Models.MessageIn();
}
input.ReadMessage(Message);
break;
@@ -3823,7 +3823,7 @@ public sealed partial class MessageIn : pb::IMessage
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
- get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[18]; }
+ get { return global::Procession.Models.ProcessionReflection.Descriptor.MessageTypes[18]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
@@ -4264,7 +4264,7 @@ public sealed partial class MessageOut : pb::IMessage
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
- get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[19]; }
+ get { return global::Procession.Models.ProcessionReflection.Descriptor.MessageTypes[19]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
@@ -4454,13 +4454,13 @@ public string GroupName {
/// Field number for the "MessageState" field.
public const int MessageStateFieldNumber = 11;
- private global::AgQueue.Models.MessageState messageState_ = global::AgQueue.Models.MessageState.Unknown;
+ private global::Procession.Models.MessageState messageState_ = global::Procession.Models.MessageState.Unknown;
///
/// State
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
- public global::AgQueue.Models.MessageState MessageState {
+ public global::Procession.Models.MessageState MessageState {
get { return messageState_; }
set {
messageState_ = value;
@@ -4505,10 +4505,10 @@ public long TransId {
/// Field number for the "TransAction" field.
public const int TransActionFieldNumber = 15;
- private global::AgQueue.Models.TransactionAction transAction_ = global::AgQueue.Models.TransactionAction.None;
+ private global::Procession.Models.TransactionAction transAction_ = global::Procession.Models.TransactionAction.None;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
- public global::AgQueue.Models.TransactionAction TransAction {
+ public global::Procession.Models.TransactionAction TransAction {
get { return transAction_; }
set {
transAction_ = value;
@@ -4562,11 +4562,11 @@ public override int GetHashCode() {
if (ExpiryDateTime != 0L) hash ^= ExpiryDateTime.GetHashCode();
if (CorrelationId != 0) hash ^= CorrelationId.GetHashCode();
if (GroupName.Length != 0) hash ^= GroupName.GetHashCode();
- if (MessageState != global::AgQueue.Models.MessageState.Unknown) hash ^= MessageState.GetHashCode();
+ if (MessageState != global::Procession.Models.MessageState.Unknown) hash ^= MessageState.GetHashCode();
if (AddDateTime != 0L) hash ^= AddDateTime.GetHashCode();
if (CloseDateTime != 0L) hash ^= CloseDateTime.GetHashCode();
if (TransId != 0L) hash ^= TransId.GetHashCode();
- if (TransAction != global::AgQueue.Models.TransactionAction.None) hash ^= TransAction.GetHashCode();
+ if (TransAction != global::Procession.Models.TransactionAction.None) hash ^= TransAction.GetHashCode();
if (_unknownFields != null) {
hash ^= _unknownFields.GetHashCode();
}
@@ -4625,7 +4625,7 @@ public void WriteTo(pb::CodedOutputStream output) {
output.WriteRawTag(82);
output.WriteString(GroupName);
}
- if (MessageState != global::AgQueue.Models.MessageState.Unknown) {
+ if (MessageState != global::Procession.Models.MessageState.Unknown) {
output.WriteRawTag(88);
output.WriteEnum((int) MessageState);
}
@@ -4641,7 +4641,7 @@ public void WriteTo(pb::CodedOutputStream output) {
output.WriteRawTag(112);
output.WriteInt64(TransId);
}
- if (TransAction != global::AgQueue.Models.TransactionAction.None) {
+ if (TransAction != global::Procession.Models.TransactionAction.None) {
output.WriteRawTag(120);
output.WriteEnum((int) TransAction);
}
@@ -4695,7 +4695,7 @@ public void WriteTo(pb::CodedOutputStream output) {
output.WriteRawTag(82);
output.WriteString(GroupName);
}
- if (MessageState != global::AgQueue.Models.MessageState.Unknown) {
+ if (MessageState != global::Procession.Models.MessageState.Unknown) {
output.WriteRawTag(88);
output.WriteEnum((int) MessageState);
}
@@ -4711,7 +4711,7 @@ public void WriteTo(pb::CodedOutputStream output) {
output.WriteRawTag(112);
output.WriteInt64(TransId);
}
- if (TransAction != global::AgQueue.Models.TransactionAction.None) {
+ if (TransAction != global::Procession.Models.TransactionAction.None) {
output.WriteRawTag(120);
output.WriteEnum((int) TransAction);
}
@@ -4755,7 +4755,7 @@ public int CalculateSize() {
if (GroupName.Length != 0) {
size += 1 + pb::CodedOutputStream.ComputeStringSize(GroupName);
}
- if (MessageState != global::AgQueue.Models.MessageState.Unknown) {
+ if (MessageState != global::Procession.Models.MessageState.Unknown) {
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) MessageState);
}
if (AddDateTime != 0L) {
@@ -4767,7 +4767,7 @@ public int CalculateSize() {
if (TransId != 0L) {
size += 1 + pb::CodedOutputStream.ComputeInt64Size(TransId);
}
- if (TransAction != global::AgQueue.Models.TransactionAction.None) {
+ if (TransAction != global::Procession.Models.TransactionAction.None) {
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) TransAction);
}
if (_unknownFields != null) {
@@ -4812,7 +4812,7 @@ public void MergeFrom(MessageOut other) {
if (other.GroupName.Length != 0) {
GroupName = other.GroupName;
}
- if (other.MessageState != global::AgQueue.Models.MessageState.Unknown) {
+ if (other.MessageState != global::Procession.Models.MessageState.Unknown) {
MessageState = other.MessageState;
}
if (other.AddDateTime != 0L) {
@@ -4824,7 +4824,7 @@ public void MergeFrom(MessageOut other) {
if (other.TransId != 0L) {
TransId = other.TransId;
}
- if (other.TransAction != global::AgQueue.Models.TransactionAction.None) {
+ if (other.TransAction != global::Procession.Models.TransactionAction.None) {
TransAction = other.TransAction;
}
_unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
@@ -4887,7 +4887,7 @@ public void MergeFrom(pb::CodedInputStream input) {
break;
}
case 88: {
- MessageState = (global::AgQueue.Models.MessageState) input.ReadEnum();
+ MessageState = (global::Procession.Models.MessageState) input.ReadEnum();
break;
}
case 96: {
@@ -4903,7 +4903,7 @@ public void MergeFrom(pb::CodedInputStream input) {
break;
}
case 120: {
- TransAction = (global::AgQueue.Models.TransactionAction) input.ReadEnum();
+ TransAction = (global::Procession.Models.TransactionAction) input.ReadEnum();
break;
}
}
@@ -4966,7 +4966,7 @@ public void MergeFrom(pb::CodedInputStream input) {
break;
}
case 88: {
- MessageState = (global::AgQueue.Models.MessageState) input.ReadEnum();
+ MessageState = (global::Procession.Models.MessageState) input.ReadEnum();
break;
}
case 96: {
@@ -4982,7 +4982,7 @@ public void MergeFrom(pb::CodedInputStream input) {
break;
}
case 120: {
- TransAction = (global::AgQueue.Models.TransactionAction) input.ReadEnum();
+ TransAction = (global::Procession.Models.TransactionAction) input.ReadEnum();
break;
}
}
@@ -5007,7 +5007,7 @@ public sealed partial class QueueMessageResponse : pb::IMessageField number for the "Message" field.
public const int MessageFieldNumber = 3;
- private global::AgQueue.Models.MessageOut message_;
+ private global::Procession.Models.MessageOut message_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
- public global::AgQueue.Models.MessageOut Message {
+ public global::Procession.Models.MessageOut Message {
get { return message_; }
set {
message_ = value;
@@ -5670,7 +5670,7 @@ public void MergeFrom(DequeueMessageResponse other) {
}
if (other.message_ != null) {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageOut();
+ Message = new global::Procession.Models.MessageOut();
}
Message.MergeFrom(other.Message);
}
@@ -5703,7 +5703,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
case 26: {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageOut();
+ Message = new global::Procession.Models.MessageOut();
}
input.ReadMessage(Message);
break;
@@ -5737,7 +5737,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
case 26: {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageOut();
+ Message = new global::Procession.Models.MessageOut();
}
input.ReadMessage(Message);
break;
@@ -5764,7 +5764,7 @@ public sealed partial class PeekMessageByQueueRequest : pb::IMessageField number for the "Message" field.
public const int MessageFieldNumber = 1;
- private global::AgQueue.Models.MessageOut message_;
+ private global::Procession.Models.MessageOut message_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
- public global::AgQueue.Models.MessageOut Message {
+ public global::Procession.Models.MessageOut Message {
get { return message_; }
set {
message_ = value;
@@ -6091,7 +6091,7 @@ public void MergeFrom(PeekMessageByQueueResponse other) {
}
if (other.message_ != null) {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageOut();
+ Message = new global::Procession.Models.MessageOut();
}
Message.MergeFrom(other.Message);
}
@@ -6116,7 +6116,7 @@ public void MergeFrom(pb::CodedInputStream input) {
break;
case 10: {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageOut();
+ Message = new global::Procession.Models.MessageOut();
}
input.ReadMessage(Message);
break;
@@ -6142,7 +6142,7 @@ public void MergeFrom(pb::CodedInputStream input) {
break;
case 10: {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageOut();
+ Message = new global::Procession.Models.MessageOut();
}
input.ReadMessage(Message);
break;
@@ -6169,7 +6169,7 @@ public sealed partial class PeekMessageByIdRequest : pb::IMessageField number for the "Message" field.
public const int MessageFieldNumber = 1;
- private global::AgQueue.Models.MessageOut message_;
+ private global::Procession.Models.MessageOut message_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
- public global::AgQueue.Models.MessageOut Message {
+ public global::Procession.Models.MessageOut Message {
get { return message_; }
set {
message_ = value;
@@ -6496,7 +6496,7 @@ public void MergeFrom(PeekMessageByIdResponse other) {
}
if (other.message_ != null) {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageOut();
+ Message = new global::Procession.Models.MessageOut();
}
Message.MergeFrom(other.Message);
}
@@ -6521,7 +6521,7 @@ public void MergeFrom(pb::CodedInputStream input) {
break;
case 10: {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageOut();
+ Message = new global::Procession.Models.MessageOut();
}
input.ReadMessage(Message);
break;
@@ -6547,7 +6547,7 @@ public void MergeFrom(pb::CodedInputStream input) {
break;
case 10: {
if (message_ == null) {
- Message = new global::AgQueue.Models.MessageOut();
+ Message = new global::Procession.Models.MessageOut();
}
input.ReadMessage(Message);
break;
diff --git a/AgQueue.Models/AgQueue.proto b/Procession.Models/Procession.proto
similarity index 99%
rename from AgQueue.Models/AgQueue.proto
rename to Procession.Models/Procession.proto
index a9c9045..cb23327 100644
--- a/AgQueue.Models/AgQueue.proto
+++ b/Procession.Models/Procession.proto
@@ -1,6 +1,6 @@
syntax = "proto3";
-option csharp_namespace = "AgQueue.Models";
+option csharp_namespace = "Procession.Models";
import "google/protobuf/timestamp.proto";
diff --git a/AgQueue.Models/AgQueueGrpc.cs b/Procession.Models/ProcessionGrpc.cs
similarity index 51%
rename from AgQueue.Models/AgQueueGrpc.cs
rename to Procession.Models/ProcessionGrpc.cs
index 89f3827..2161886 100644
--- a/AgQueue.Models/AgQueueGrpc.cs
+++ b/Procession.Models/ProcessionGrpc.cs
@@ -1,13 +1,13 @@
//
// Generated by the protocol buffer compiler. DO NOT EDIT!
-// source: AgQueue.proto
+// source: Procession.proto
//
#pragma warning disable 0414, 1591, 8981, 0612
#region Designer generated code
using grpc = global::Grpc.Core;
-namespace AgQueue.Models {
+namespace Procession.Models {
///
/// The service definition. All should start with a verb.
///
@@ -49,58 +49,58 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_CreateQueueRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.CreateQueueRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_CreateQueueRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.CreateQueueRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_CreateQueueResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.CreateQueueResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_CreateQueueResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.CreateQueueResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_InitializeStorageRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.InitializeStorageRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_InitializeStorageRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.InitializeStorageRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_InitializeStorageResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.InitializeStorageResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_InitializeStorageResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.InitializeStorageResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_DeleteQueueByIdRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.DeleteQueueByIdRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_DeleteQueueByIdRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.DeleteQueueByIdRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_DeleteQueueByIdResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.DeleteQueueByIdResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_DeleteQueueByIdResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.DeleteQueueByIdResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_DeleteQueueByNameRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.DeleteQueueByNameRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_DeleteQueueByNameRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.DeleteQueueByNameRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_DeleteQueueByNameResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.DeleteQueueByNameResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_DeleteQueueByNameResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.DeleteQueueByNameResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_GetQueueInfoByIdRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.GetQueueInfoByIdRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_GetQueueInfoByIdRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.GetQueueInfoByIdRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_GetQueueInfoResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.GetQueueInfoResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_GetQueueInfoResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.GetQueueInfoResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_GetQueueInfoByNameRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.GetQueueInfoByNameRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_GetQueueInfoByNameRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.GetQueueInfoByNameRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_StartTransactionRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.StartTransactionRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_StartTransactionRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.StartTransactionRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_StartTransactionResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.StartTransactionResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_StartTransactionResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.StartTransactionResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_CommitTransactionRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.CommitTransactionRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_CommitTransactionRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.CommitTransactionRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_CommitTransactionResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.CommitTransactionResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_CommitTransactionResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.CommitTransactionResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_RollbackTransactionRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.RollbackTransactionRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_RollbackTransactionRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.RollbackTransactionRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_RollbackTransactionResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.RollbackTransactionResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_RollbackTransactionResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.RollbackTransactionResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_QueueMessageRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.QueueMessageRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_QueueMessageRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.QueueMessageRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_QueueMessageResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.QueueMessageResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_QueueMessageResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.QueueMessageResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_DequeueMessageRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.DequeueMessageRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_DequeueMessageRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.DequeueMessageRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_DequeueMessageResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.DequeueMessageResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_DequeueMessageResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.DequeueMessageResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_PeekMessageByQueueRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.PeekMessageByQueueRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_PeekMessageByQueueRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.PeekMessageByQueueRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_PeekMessageByQueueResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.PeekMessageByQueueResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_PeekMessageByQueueResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.PeekMessageByQueueResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_PeekMessageByIdRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.PeekMessageByIdRequest.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_PeekMessageByIdRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.PeekMessageByIdRequest.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Marshaller __Marshaller_greet_PeekMessageByIdResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::AgQueue.Models.PeekMessageByIdResponse.Parser));
+ static readonly grpc::Marshaller __Marshaller_greet_PeekMessageByIdResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::Procession.Models.PeekMessageByIdResponse.Parser));
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_CreateQueue = new grpc::Method(
+ static readonly grpc::Method __Method_CreateQueue = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"CreateQueue",
@@ -108,7 +108,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_CreateQueueResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_InitializeStorage = new grpc::Method(
+ static readonly grpc::Method __Method_InitializeStorage = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"InitializeStorage",
@@ -116,7 +116,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_InitializeStorageResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_DeleteQueueById = new grpc::Method(
+ static readonly grpc::Method __Method_DeleteQueueById = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"DeleteQueueById",
@@ -124,7 +124,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_DeleteQueueByIdResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_DeleteQueueByName = new grpc::Method(
+ static readonly grpc::Method __Method_DeleteQueueByName = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"DeleteQueueByName",
@@ -132,7 +132,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_DeleteQueueByNameResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_GetQueueInfoById = new grpc::Method(
+ static readonly grpc::Method __Method_GetQueueInfoById = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"GetQueueInfoById",
@@ -140,7 +140,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_GetQueueInfoResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_GetQueueInfoByName = new grpc::Method(
+ static readonly grpc::Method __Method_GetQueueInfoByName = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"GetQueueInfoByName",
@@ -148,7 +148,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_GetQueueInfoResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_StartTransaction = new grpc::Method(
+ static readonly grpc::Method __Method_StartTransaction = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"StartTransaction",
@@ -156,7 +156,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_StartTransactionResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_CommitTransaction = new grpc::Method(
+ static readonly grpc::Method __Method_CommitTransaction = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"CommitTransaction",
@@ -164,7 +164,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_CommitTransactionResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_RollbackTranaction = new grpc::Method(
+ static readonly grpc::Method __Method_RollbackTranaction = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"RollbackTranaction",
@@ -172,7 +172,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_RollbackTransactionResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_QueueMessage = new grpc::Method(
+ static readonly grpc::Method __Method_QueueMessage = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"QueueMessage",
@@ -180,7 +180,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_QueueMessageResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_DequeueMessage = new grpc::Method(
+ static readonly grpc::Method __Method_DequeueMessage = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"DequeueMessage",
@@ -188,7 +188,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_DequeueMessageResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_PeekMessageByQueue = new grpc::Method(
+ static readonly grpc::Method __Method_PeekMessageByQueue = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"PeekMessageByQueue",
@@ -196,7 +196,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_PeekMessageByQueueResponse);
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- static readonly grpc::Method __Method_PeekMessageById = new grpc::Method(
+ static readonly grpc::Method __Method_PeekMessageById = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
"PeekMessageById",
@@ -206,7 +206,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
/// Service descriptor
public static global::Google.Protobuf.Reflection.ServiceDescriptor Descriptor
{
- get { return global::AgQueue.Models.AgQueueReflection.Descriptor.Services[0]; }
+ get { return global::Procession.Models.ProcessionReflection.Descriptor.Services[0]; }
}
/// Base class for server-side implementations of QueueApi
@@ -214,79 +214,79 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
public abstract partial class QueueApiBase
{
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task CreateQueue(global::AgQueue.Models.CreateQueueRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task CreateQueue(global::Procession.Models.CreateQueueRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task InitializeStorage(global::AgQueue.Models.InitializeStorageRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task InitializeStorage(global::Procession.Models.InitializeStorageRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task DeleteQueueById(global::AgQueue.Models.DeleteQueueByIdRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task DeleteQueueById(global::Procession.Models.DeleteQueueByIdRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task DeleteQueueByName(global::AgQueue.Models.DeleteQueueByNameRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task DeleteQueueByName(global::Procession.Models.DeleteQueueByNameRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task GetQueueInfoById(global::AgQueue.Models.GetQueueInfoByIdRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task GetQueueInfoById(global::Procession.Models.GetQueueInfoByIdRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task GetQueueInfoByName(global::AgQueue.Models.GetQueueInfoByNameRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task GetQueueInfoByName(global::Procession.Models.GetQueueInfoByNameRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task StartTransaction(global::AgQueue.Models.StartTransactionRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task StartTransaction(global::Procession.Models.StartTransactionRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task CommitTransaction(global::AgQueue.Models.CommitTransactionRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task CommitTransaction(global::Procession.Models.CommitTransactionRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task RollbackTranaction(global::AgQueue.Models.RollbackTransactionRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task RollbackTranaction(global::Procession.Models.RollbackTransactionRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task QueueMessage(global::AgQueue.Models.QueueMessageRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task QueueMessage(global::Procession.Models.QueueMessageRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task DequeueMessage(global::AgQueue.Models.DequeueMessageRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task DequeueMessage(global::Procession.Models.DequeueMessageRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task PeekMessageByQueue(global::AgQueue.Models.PeekMessageByQueueRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task PeekMessageByQueue(global::Procession.Models.PeekMessageByQueueRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::System.Threading.Tasks.Task PeekMessageById(global::AgQueue.Models.PeekMessageByIdRequest request, grpc::ServerCallContext context)
+ public virtual global::System.Threading.Tasks.Task PeekMessageById(global::Procession.Models.PeekMessageByIdRequest request, grpc::ServerCallContext context)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
}
@@ -321,262 +321,262 @@ protected QueueApiClient(ClientBaseConfiguration configuration) : base(configura
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.CreateQueueResponse CreateQueue(global::AgQueue.Models.CreateQueueRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.CreateQueueResponse CreateQueue(global::Procession.Models.CreateQueueRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return CreateQueue(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.CreateQueueResponse CreateQueue(global::AgQueue.Models.CreateQueueRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.CreateQueueResponse CreateQueue(global::Procession.Models.CreateQueueRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_CreateQueue, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall CreateQueueAsync(global::AgQueue.Models.CreateQueueRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall CreateQueueAsync(global::Procession.Models.CreateQueueRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return CreateQueueAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall CreateQueueAsync(global::AgQueue.Models.CreateQueueRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall CreateQueueAsync(global::Procession.Models.CreateQueueRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_CreateQueue, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.InitializeStorageResponse InitializeStorage(global::AgQueue.Models.InitializeStorageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.InitializeStorageResponse InitializeStorage(global::Procession.Models.InitializeStorageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return InitializeStorage(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.InitializeStorageResponse InitializeStorage(global::AgQueue.Models.InitializeStorageRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.InitializeStorageResponse InitializeStorage(global::Procession.Models.InitializeStorageRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_InitializeStorage, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall InitializeStorageAsync(global::AgQueue.Models.InitializeStorageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall InitializeStorageAsync(global::Procession.Models.InitializeStorageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return InitializeStorageAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall InitializeStorageAsync(global::AgQueue.Models.InitializeStorageRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall InitializeStorageAsync(global::Procession.Models.InitializeStorageRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_InitializeStorage, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.DeleteQueueByIdResponse DeleteQueueById(global::AgQueue.Models.DeleteQueueByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.DeleteQueueByIdResponse DeleteQueueById(global::Procession.Models.DeleteQueueByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return DeleteQueueById(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.DeleteQueueByIdResponse DeleteQueueById(global::AgQueue.Models.DeleteQueueByIdRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.DeleteQueueByIdResponse DeleteQueueById(global::Procession.Models.DeleteQueueByIdRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_DeleteQueueById, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall DeleteQueueByIdAsync(global::AgQueue.Models.DeleteQueueByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall DeleteQueueByIdAsync(global::Procession.Models.DeleteQueueByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return DeleteQueueByIdAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall DeleteQueueByIdAsync(global::AgQueue.Models.DeleteQueueByIdRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall DeleteQueueByIdAsync(global::Procession.Models.DeleteQueueByIdRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_DeleteQueueById, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.DeleteQueueByNameResponse DeleteQueueByName(global::AgQueue.Models.DeleteQueueByNameRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.DeleteQueueByNameResponse DeleteQueueByName(global::Procession.Models.DeleteQueueByNameRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return DeleteQueueByName(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.DeleteQueueByNameResponse DeleteQueueByName(global::AgQueue.Models.DeleteQueueByNameRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.DeleteQueueByNameResponse DeleteQueueByName(global::Procession.Models.DeleteQueueByNameRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_DeleteQueueByName, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall DeleteQueueByNameAsync(global::AgQueue.Models.DeleteQueueByNameRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall DeleteQueueByNameAsync(global::Procession.Models.DeleteQueueByNameRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return DeleteQueueByNameAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall DeleteQueueByNameAsync(global::AgQueue.Models.DeleteQueueByNameRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall DeleteQueueByNameAsync(global::Procession.Models.DeleteQueueByNameRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_DeleteQueueByName, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.GetQueueInfoResponse GetQueueInfoById(global::AgQueue.Models.GetQueueInfoByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.GetQueueInfoResponse GetQueueInfoById(global::Procession.Models.GetQueueInfoByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return GetQueueInfoById(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.GetQueueInfoResponse GetQueueInfoById(global::AgQueue.Models.GetQueueInfoByIdRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.GetQueueInfoResponse GetQueueInfoById(global::Procession.Models.GetQueueInfoByIdRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_GetQueueInfoById, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall GetQueueInfoByIdAsync(global::AgQueue.Models.GetQueueInfoByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall GetQueueInfoByIdAsync(global::Procession.Models.GetQueueInfoByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return GetQueueInfoByIdAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall GetQueueInfoByIdAsync(global::AgQueue.Models.GetQueueInfoByIdRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall GetQueueInfoByIdAsync(global::Procession.Models.GetQueueInfoByIdRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_GetQueueInfoById, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.GetQueueInfoResponse GetQueueInfoByName(global::AgQueue.Models.GetQueueInfoByNameRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.GetQueueInfoResponse GetQueueInfoByName(global::Procession.Models.GetQueueInfoByNameRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return GetQueueInfoByName(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.GetQueueInfoResponse GetQueueInfoByName(global::AgQueue.Models.GetQueueInfoByNameRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.GetQueueInfoResponse GetQueueInfoByName(global::Procession.Models.GetQueueInfoByNameRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_GetQueueInfoByName, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall GetQueueInfoByNameAsync(global::AgQueue.Models.GetQueueInfoByNameRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall GetQueueInfoByNameAsync(global::Procession.Models.GetQueueInfoByNameRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return GetQueueInfoByNameAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall GetQueueInfoByNameAsync(global::AgQueue.Models.GetQueueInfoByNameRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall GetQueueInfoByNameAsync(global::Procession.Models.GetQueueInfoByNameRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_GetQueueInfoByName, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.StartTransactionResponse StartTransaction(global::AgQueue.Models.StartTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.StartTransactionResponse StartTransaction(global::Procession.Models.StartTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return StartTransaction(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.StartTransactionResponse StartTransaction(global::AgQueue.Models.StartTransactionRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.StartTransactionResponse StartTransaction(global::Procession.Models.StartTransactionRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_StartTransaction, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall StartTransactionAsync(global::AgQueue.Models.StartTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall StartTransactionAsync(global::Procession.Models.StartTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return StartTransactionAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall StartTransactionAsync(global::AgQueue.Models.StartTransactionRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall StartTransactionAsync(global::Procession.Models.StartTransactionRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_StartTransaction, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.CommitTransactionResponse CommitTransaction(global::AgQueue.Models.CommitTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.CommitTransactionResponse CommitTransaction(global::Procession.Models.CommitTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return CommitTransaction(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.CommitTransactionResponse CommitTransaction(global::AgQueue.Models.CommitTransactionRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.CommitTransactionResponse CommitTransaction(global::Procession.Models.CommitTransactionRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_CommitTransaction, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall CommitTransactionAsync(global::AgQueue.Models.CommitTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall CommitTransactionAsync(global::Procession.Models.CommitTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return CommitTransactionAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall CommitTransactionAsync(global::AgQueue.Models.CommitTransactionRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall CommitTransactionAsync(global::Procession.Models.CommitTransactionRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_CommitTransaction, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.RollbackTransactionResponse RollbackTranaction(global::AgQueue.Models.RollbackTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.RollbackTransactionResponse RollbackTranaction(global::Procession.Models.RollbackTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return RollbackTranaction(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.RollbackTransactionResponse RollbackTranaction(global::AgQueue.Models.RollbackTransactionRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.RollbackTransactionResponse RollbackTranaction(global::Procession.Models.RollbackTransactionRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_RollbackTranaction, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall RollbackTranactionAsync(global::AgQueue.Models.RollbackTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall RollbackTranactionAsync(global::Procession.Models.RollbackTransactionRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return RollbackTranactionAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall RollbackTranactionAsync(global::AgQueue.Models.RollbackTransactionRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall RollbackTranactionAsync(global::Procession.Models.RollbackTransactionRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_RollbackTranaction, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.QueueMessageResponse QueueMessage(global::AgQueue.Models.QueueMessageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.QueueMessageResponse QueueMessage(global::Procession.Models.QueueMessageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return QueueMessage(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.QueueMessageResponse QueueMessage(global::AgQueue.Models.QueueMessageRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.QueueMessageResponse QueueMessage(global::Procession.Models.QueueMessageRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_QueueMessage, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall QueueMessageAsync(global::AgQueue.Models.QueueMessageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall QueueMessageAsync(global::Procession.Models.QueueMessageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return QueueMessageAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall QueueMessageAsync(global::AgQueue.Models.QueueMessageRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall QueueMessageAsync(global::Procession.Models.QueueMessageRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_QueueMessage, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.DequeueMessageResponse DequeueMessage(global::AgQueue.Models.DequeueMessageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.DequeueMessageResponse DequeueMessage(global::Procession.Models.DequeueMessageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return DequeueMessage(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.DequeueMessageResponse DequeueMessage(global::AgQueue.Models.DequeueMessageRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.DequeueMessageResponse DequeueMessage(global::Procession.Models.DequeueMessageRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_DequeueMessage, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall DequeueMessageAsync(global::AgQueue.Models.DequeueMessageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall DequeueMessageAsync(global::Procession.Models.DequeueMessageRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return DequeueMessageAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall DequeueMessageAsync(global::AgQueue.Models.DequeueMessageRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall DequeueMessageAsync(global::Procession.Models.DequeueMessageRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_DequeueMessage, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.PeekMessageByQueueResponse PeekMessageByQueue(global::AgQueue.Models.PeekMessageByQueueRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.PeekMessageByQueueResponse PeekMessageByQueue(global::Procession.Models.PeekMessageByQueueRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return PeekMessageByQueue(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.PeekMessageByQueueResponse PeekMessageByQueue(global::AgQueue.Models.PeekMessageByQueueRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.PeekMessageByQueueResponse PeekMessageByQueue(global::Procession.Models.PeekMessageByQueueRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_PeekMessageByQueue, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall PeekMessageByQueueAsync(global::AgQueue.Models.PeekMessageByQueueRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall PeekMessageByQueueAsync(global::Procession.Models.PeekMessageByQueueRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return PeekMessageByQueueAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall PeekMessageByQueueAsync(global::AgQueue.Models.PeekMessageByQueueRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall PeekMessageByQueueAsync(global::Procession.Models.PeekMessageByQueueRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_PeekMessageByQueue, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.PeekMessageByIdResponse PeekMessageById(global::AgQueue.Models.PeekMessageByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual global::Procession.Models.PeekMessageByIdResponse PeekMessageById(global::Procession.Models.PeekMessageByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return PeekMessageById(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual global::AgQueue.Models.PeekMessageByIdResponse PeekMessageById(global::AgQueue.Models.PeekMessageByIdRequest request, grpc::CallOptions options)
+ public virtual global::Procession.Models.PeekMessageByIdResponse PeekMessageById(global::Procession.Models.PeekMessageByIdRequest request, grpc::CallOptions options)
{
return CallInvoker.BlockingUnaryCall(__Method_PeekMessageById, null, options, request);
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall PeekMessageByIdAsync(global::AgQueue.Models.PeekMessageByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
+ public virtual grpc::AsyncUnaryCall PeekMessageByIdAsync(global::Procession.Models.PeekMessageByIdRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
{
return PeekMessageByIdAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
}
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
- public virtual grpc::AsyncUnaryCall PeekMessageByIdAsync(global::AgQueue.Models.PeekMessageByIdRequest request, grpc::CallOptions options)
+ public virtual grpc::AsyncUnaryCall PeekMessageByIdAsync(global::Procession.Models.PeekMessageByIdRequest request, grpc::CallOptions options)
{
return CallInvoker.AsyncUnaryCall(__Method_PeekMessageById, null, options, request);
}
@@ -616,19 +616,19 @@ protected override QueueApiClient NewInstance(ClientBaseConfiguration configurat
[global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public static void BindService(grpc::ServiceBinderBase serviceBinder, QueueApiBase serviceImpl)
{
- serviceBinder.AddMethod(__Method_CreateQueue, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.CreateQueue));
- serviceBinder.AddMethod(__Method_InitializeStorage, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.InitializeStorage));
- serviceBinder.AddMethod(__Method_DeleteQueueById, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.DeleteQueueById));
- serviceBinder.AddMethod(__Method_DeleteQueueByName, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.DeleteQueueByName));
- serviceBinder.AddMethod(__Method_GetQueueInfoById, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.GetQueueInfoById));
- serviceBinder.AddMethod(__Method_GetQueueInfoByName, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.GetQueueInfoByName));
- serviceBinder.AddMethod(__Method_StartTransaction, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.StartTransaction));
- serviceBinder.AddMethod(__Method_CommitTransaction, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.CommitTransaction));
- serviceBinder.AddMethod(__Method_RollbackTranaction, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.RollbackTranaction));
- serviceBinder.AddMethod(__Method_QueueMessage, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.QueueMessage));
- serviceBinder.AddMethod(__Method_DequeueMessage, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.DequeueMessage));
- serviceBinder.AddMethod(__Method_PeekMessageByQueue, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.PeekMessageByQueue));
- serviceBinder.AddMethod(__Method_PeekMessageById, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.PeekMessageById));
+ serviceBinder.AddMethod(__Method_CreateQueue, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.CreateQueue));
+ serviceBinder.AddMethod(__Method_InitializeStorage, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.InitializeStorage));
+ serviceBinder.AddMethod(__Method_DeleteQueueById, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.DeleteQueueById));
+ serviceBinder.AddMethod(__Method_DeleteQueueByName, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.DeleteQueueByName));
+ serviceBinder.AddMethod(__Method_GetQueueInfoById, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.GetQueueInfoById));
+ serviceBinder.AddMethod(__Method_GetQueueInfoByName, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.GetQueueInfoByName));
+ serviceBinder.AddMethod(__Method_StartTransaction, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.StartTransaction));
+ serviceBinder.AddMethod(__Method_CommitTransaction, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.CommitTransaction));
+ serviceBinder.AddMethod(__Method_RollbackTranaction, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.RollbackTranaction));
+ serviceBinder.AddMethod(__Method_QueueMessage, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.QueueMessage));
+ serviceBinder.AddMethod(__Method_DequeueMessage, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.DequeueMessage));
+ serviceBinder.AddMethod(__Method_PeekMessageByQueue, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.PeekMessageByQueue));
+ serviceBinder.AddMethod(__Method_PeekMessageById, serviceImpl == null ? null : new grpc::UnaryServerMethod(serviceImpl.PeekMessageById));
}
}
diff --git a/AgQueue.Postgres/DbTransaction.cs b/Procession.Postgres/DbTransaction.cs
similarity index 94%
rename from AgQueue.Postgres/DbTransaction.cs
rename to Procession.Postgres/DbTransaction.cs
index e009dbe..99e5b60 100644
--- a/AgQueue.Postgres/DbTransaction.cs
+++ b/Procession.Postgres/DbTransaction.cs
@@ -2,9 +2,9 @@
// Copyright (c) Michael Silver. All rights reserved.
//
using Npgsql;
-using AgQueue.Server.Common;
+using Procession.Server.Common;
-namespace AgQueue.Postgres
+namespace Procession.Postgres
{
///
/// Wrapper around SQLite transaction. Used by storage classes.
diff --git a/AgQueue.Postgres/IStorageTransactionExtensions.cs b/Procession.Postgres/IStorageTransactionExtensions.cs
similarity index 92%
rename from AgQueue.Postgres/IStorageTransactionExtensions.cs
rename to Procession.Postgres/IStorageTransactionExtensions.cs
index 2d4696c..6038cdb 100644
--- a/AgQueue.Postgres/IStorageTransactionExtensions.cs
+++ b/Procession.Postgres/IStorageTransactionExtensions.cs
@@ -6,9 +6,9 @@
using System.Collections.Generic;
using System.Text;
using Npgsql;
-using AgQueue.Server.Common;
+using Procession.Server.Common;
-namespace AgQueue.Postgres
+namespace Procession.Postgres
{
///
/// Extensions on the IStorageTransaction interface.
diff --git a/AgQueue.Postgres/AgQueue.Postgres.csproj b/Procession.Postgres/Procession.Postgres.csproj
similarity index 89%
rename from AgQueue.Postgres/AgQueue.Postgres.csproj
rename to Procession.Postgres/Procession.Postgres.csproj
index 92cf241..378a908 100644
--- a/AgQueue.Postgres/AgQueue.Postgres.csproj
+++ b/Procession.Postgres/Procession.Postgres.csproj
@@ -24,7 +24,7 @@
-
+
diff --git a/AgQueue.Postgres/StoragePostgres.cs b/Procession.Postgres/StoragePostgres.cs
similarity index 99%
rename from AgQueue.Postgres/StoragePostgres.cs
rename to Procession.Postgres/StoragePostgres.cs
index 091aaf2..c628ecf 100644
--- a/AgQueue.Postgres/StoragePostgres.cs
+++ b/Procession.Postgres/StoragePostgres.cs
@@ -10,14 +10,14 @@
using System.Threading.Tasks;
using Npgsql;
using Dapper;
-using AgQueue.Common;
-using AgQueue.Common.Extensions;
-using AgQueue.Common.Models;
-using AgQueue.Server.Common;
-using AgQueue.Server.Common.Models;
+using Procession.Common;
+using Procession.Common.Extensions;
+using Procession.Common.Models;
+using Procession.Server.Common;
+using Procession.Server.Common.Models;
using System.Data;
-namespace AgQueue.Postgres
+namespace Procession.Postgres
{
///
/// Implements the IStorage interface for storing and retrieving queue date to SQLite.
diff --git a/AgQueue.Postgres/dbscripts/ReloadData.ps1 b/Procession.Postgres/dbscripts/ReloadData.ps1
similarity index 70%
rename from AgQueue.Postgres/dbscripts/ReloadData.ps1
rename to Procession.Postgres/dbscripts/ReloadData.ps1
index 60ec4c7..2a1c092 100644
--- a/AgQueue.Postgres/dbscripts/ReloadData.ps1
+++ b/Procession.Postgres/dbscripts/ReloadData.ps1
@@ -2,6 +2,6 @@
docker cp ./create_db.sql posgres12:/tmp/create_db.sql
docker exec -u postgres posgres12 psql -f /tmp/create_db.sql
-docker exec -u postgres posgres12 psql -d agqueue -f /tmp/create_tables.sql
+docker exec -u postgres posgres12 psql -d procession -f /tmp/create_tables.sql
diff --git a/Procession.Postgres/dbscripts/create_db.sql b/Procession.Postgres/dbscripts/create_db.sql
new file mode 100644
index 0000000..8cf6d94
--- /dev/null
+++ b/Procession.Postgres/dbscripts/create_db.sql
@@ -0,0 +1,16 @@
+--This is run by the admin in the default database (the procession database will not have existed yet)
+DROP OWNED BY procession_user;
+DROP DATABASE IF EXISTS procession;
+
+DROP USER IF EXISTS procession_user;
+
+CREATE DATABASE procession;
+
+CREATE USER procession_user PASSWORD 'everex';
+GRANT ALL PRIVILEGES ON DATABASE procession to procession_user;
+
+SET timezone TO 'America/New_York';
+
+
+
+
diff --git a/AgQueue.Postgres/dbscripts/create_tables.sql b/Procession.Postgres/dbscripts/create_tables.sql
similarity index 88%
rename from AgQueue.Postgres/dbscripts/create_tables.sql
rename to Procession.Postgres/dbscripts/create_tables.sql
index 541a600..3950ebc 100644
--- a/AgQueue.Postgres/dbscripts/create_tables.sql
+++ b/Procession.Postgres/dbscripts/create_tables.sql
@@ -1,4 +1,4 @@
---This is run by the admin in the agqueue database
+--This is run by the admin in the procession database
CREATE EXTENSION IF NOT EXISTS citext;
@@ -47,11 +47,11 @@ Create table IF NOT EXISTS message_tags
FOREIGN KEY(tag_id) REFERENCES tags(id) ON DELETE CASCADE,
FOREIGN KEY(message_id) REFERENCES messages(id) ON DELETE CASCADE);
-GRANT ALL PRIVILEGES ON DATABASE agqueue TO agqueue_user;
-GRANT USAGE ON SCHEMA public to agqueue_user;
+GRANT ALL PRIVILEGES ON DATABASE procession TO procession_user;
+GRANT USAGE ON SCHEMA public to procession_user;
--Not needed, yet
-GRANT ALL ON ALL SEQUENCES IN SCHEMA public TO agqueue_user;
-GRANT ALL ON ALL TABLES IN SCHEMA public TO agqueue_user;
+GRANT ALL ON ALL SEQUENCES IN SCHEMA public TO procession_user;
+GRANT ALL ON ALL TABLES IN SCHEMA public TO procession_user;
--This locks the next record in the DB, updates it to reflect that the record is active and returns the record
CREATE OR REPLACE PROCEDURE dequeue_message(
diff --git a/AgQueue.Postgres/docker/docker-compose.yml b/Procession.Postgres/docker/docker-compose.yml
similarity index 100%
rename from AgQueue.Postgres/docker/docker-compose.yml
rename to Procession.Postgres/docker/docker-compose.yml
diff --git a/AgQueue.Postgres/stylecop.json b/Procession.Postgres/stylecop.json
similarity index 100%
rename from AgQueue.Postgres/stylecop.json
rename to Procession.Postgres/stylecop.json
diff --git a/AgQueue.Server.Common/ApiResult.cs b/Procession.Server.Common/ApiResult.cs
similarity index 96%
rename from AgQueue.Server.Common/ApiResult.cs
rename to Procession.Server.Common/ApiResult.cs
index 749034a..a120b86 100644
--- a/AgQueue.Server.Common/ApiResult.cs
+++ b/Procession.Server.Common/ApiResult.cs
@@ -2,7 +2,7 @@
// Copyright (c) Michael Silver. All rights reserved.
//
-namespace AgQueue.Server.Common
+namespace Procession.Server.Common
{/*
public class ApiResult
{
diff --git a/AgQueue.Server.Common/AssemblyInfo.cs b/Procession.Server.Common/AssemblyInfo.cs
similarity index 100%
rename from AgQueue.Server.Common/AssemblyInfo.cs
rename to Procession.Server.Common/AssemblyInfo.cs
diff --git a/AgQueue.Server.Common/GlobalSuppressions.cs b/Procession.Server.Common/GlobalSuppressions.cs
similarity index 100%
rename from AgQueue.Server.Common/GlobalSuppressions.cs
rename to Procession.Server.Common/GlobalSuppressions.cs
diff --git a/AgQueue.Server.Common/IStorage.cs b/Procession.Server.Common/IStorage.cs
similarity index 98%
rename from AgQueue.Server.Common/IStorage.cs
rename to Procession.Server.Common/IStorage.cs
index 40853f2..d548bb3 100644
--- a/AgQueue.Server.Common/IStorage.cs
+++ b/Procession.Server.Common/IStorage.cs
@@ -5,11 +5,11 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using AgQueue.Common;
-using AgQueue.Common.Models;
-using AgQueue.Server.Common.Models;
+using Procession.Common;
+using Procession.Common.Models;
+using Procession.Server.Common.Models;
-namespace AgQueue.Server.Common
+namespace Procession.Server.Common
{
///
/// The interface for storing and retrieving queue information from a storage mechinism, usually a database.
diff --git a/AgQueue.Server.Common/IStorageTransaction.cs b/Procession.Server.Common/IStorageTransaction.cs
similarity index 94%
rename from AgQueue.Server.Common/IStorageTransaction.cs
rename to Procession.Server.Common/IStorageTransaction.cs
index 18ea462..1e9b7c1 100644
--- a/AgQueue.Server.Common/IStorageTransaction.cs
+++ b/Procession.Server.Common/IStorageTransaction.cs
@@ -2,7 +2,7 @@
// Copyright (c) Michael Silver. All rights reserved.
//
-namespace AgQueue.Server.Common
+namespace Procession.Server.Common
{
///
/// Represents a transaction used by the storage (usually a database transaction).
diff --git a/AgQueue.Server.Common/InternalApi.cs b/Procession.Server.Common/InternalApi.cs
similarity index 99%
rename from AgQueue.Server.Common/InternalApi.cs
rename to Procession.Server.Common/InternalApi.cs
index 7e2e96c..596ba93 100644
--- a/AgQueue.Server.Common/InternalApi.cs
+++ b/Procession.Server.Common/InternalApi.cs
@@ -13,14 +13,14 @@
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
-using AgQueue.Common;
-using AgQueue.Common.Extensions;
-using AgQueue.Common.Models;
-using AgQueue.Server.Common.Models;
+using Procession.Common;
+using Procession.Common.Extensions;
+using Procession.Common.Models;
+using Procession.Server.Common.Models;
[assembly: InternalsVisibleTo("AgQueue.Tests")]
-namespace AgQueue.Server.Common
+namespace Procession.Server.Common
{
///
/// Starting point for accessing all queue related APIS
diff --git a/AgQueue.Server.Common/Models/QueueInfo.cs b/Procession.Server.Common/Models/QueueInfo.cs
similarity index 93%
rename from AgQueue.Server.Common/Models/QueueInfo.cs
rename to Procession.Server.Common/Models/QueueInfo.cs
index 6e72922..b75c531 100644
--- a/AgQueue.Server.Common/Models/QueueInfo.cs
+++ b/Procession.Server.Common/Models/QueueInfo.cs
@@ -6,7 +6,7 @@
using System.Collections.Generic;
using System.Text;
-namespace AgQueue.Server.Common.Models
+namespace Procession.Server.Common.Models
{
///
/// Contains information a specific queue.
diff --git a/AgQueue.Server.Common/AgQueue.Library.csproj b/Procession.Server.Common/Procession.Library.csproj
similarity index 100%
rename from AgQueue.Server.Common/AgQueue.Library.csproj
rename to Procession.Server.Common/Procession.Library.csproj
diff --git a/AgQueue.Server.Common/AgQueue.Server.Common.csproj b/Procession.Server.Common/Procession.Server.Common.csproj
similarity index 93%
rename from AgQueue.Server.Common/AgQueue.Server.Common.csproj
rename to Procession.Server.Common/Procession.Server.Common.csproj
index b91be59..762500b 100644
--- a/AgQueue.Server.Common/AgQueue.Server.Common.csproj
+++ b/Procession.Server.Common/Procession.Server.Common.csproj
@@ -26,7 +26,7 @@
-
+
diff --git a/AgQueue.Server.Common/Queue.cs b/Procession.Server.Common/Queue.cs
similarity index 98%
rename from AgQueue.Server.Common/Queue.cs
rename to Procession.Server.Common/Queue.cs
index 7fac9c9..655187e 100644
--- a/AgQueue.Server.Common/Queue.cs
+++ b/Procession.Server.Common/Queue.cs
@@ -7,9 +7,9 @@
using System.Threading;
using System.Threading.Tasks;
using MessagePack;
-using AgQueue.Common;
+using Procession.Common;
-namespace AgQueue.Server.Common
+namespace Procession.Server.Common
{
/*
diff --git a/AgQueue.Server.Common/QueueOptions.cs b/Procession.Server.Common/QueueOptions.cs
similarity index 95%
rename from AgQueue.Server.Common/QueueOptions.cs
rename to Procession.Server.Common/QueueOptions.cs
index f49dcac..5117cc2 100644
--- a/AgQueue.Server.Common/QueueOptions.cs
+++ b/Procession.Server.Common/QueueOptions.cs
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;
-namespace AgQueue.Server.Common
+namespace Procession.Server.Common
{
///
/// Options used by the queue server.
diff --git a/AgQueue.Server.Common/ResultCode.cs b/Procession.Server.Common/ResultCode.cs
similarity index 99%
rename from AgQueue.Server.Common/ResultCode.cs
rename to Procession.Server.Common/ResultCode.cs
index 839879b..ad25299 100644
--- a/AgQueue.Server.Common/ResultCode.cs
+++ b/Procession.Server.Common/ResultCode.cs
@@ -2,7 +2,7 @@
// Copyright (c) Michael Silver. All rights reserved.
//
-namespace AgQueue.Server.Common
+namespace Procession.Server.Common
{
///
/// Result codes from internal API calls. This currently map directly to gRPC status codes, but
diff --git a/AgQueue.Server.Common/stylecop.json b/Procession.Server.Common/stylecop.json
similarity index 100%
rename from AgQueue.Server.Common/stylecop.json
rename to Procession.Server.Common/stylecop.json
diff --git a/AgQueue.Sqlite/DbTransaction.cs b/Procession.Sqlite/DbTransaction.cs
similarity index 95%
rename from AgQueue.Sqlite/DbTransaction.cs
rename to Procession.Sqlite/DbTransaction.cs
index 73d4337..3635ed5 100644
--- a/AgQueue.Sqlite/DbTransaction.cs
+++ b/Procession.Sqlite/DbTransaction.cs
@@ -2,10 +2,10 @@
// Copyright (c) Michael Silver. All rights reserved.
//
using Microsoft.Data.Sqlite;
-using AgQueue.Server.Common;
+using Procession.Server.Common;
//using System.Data.SQLite;
-namespace AgQueue.Sqlite
+namespace Procession.Sqlite
{
///
/// Wrapper around SQLite transaction. Used by storage classes.
diff --git a/AgQueue.Sqlite/IStorageTransactionExtensions.cs b/Procession.Sqlite/IStorageTransactionExtensions.cs
similarity index 93%
rename from AgQueue.Sqlite/IStorageTransactionExtensions.cs
rename to Procession.Sqlite/IStorageTransactionExtensions.cs
index 543e4ca..ba86065 100644
--- a/AgQueue.Sqlite/IStorageTransactionExtensions.cs
+++ b/Procession.Sqlite/IStorageTransactionExtensions.cs
@@ -7,9 +7,9 @@
//using System.Data.SQLite;
using System.Text;
using Microsoft.Data.Sqlite;
-using AgQueue.Server.Common;
+using Procession.Server.Common;
-namespace AgQueue.Sqlite
+namespace Procession.Sqlite
{
///
/// Extensions on the IStorageTransaction interface.
diff --git a/AgQueue.Sqlite/AgQueue.Sqlite.csproj b/Procession.Sqlite/Procession.Sqlite.csproj
similarity index 91%
rename from AgQueue.Sqlite/AgQueue.Sqlite.csproj
rename to Procession.Sqlite/Procession.Sqlite.csproj
index 606071a..7cdcb27 100644
--- a/AgQueue.Sqlite/AgQueue.Sqlite.csproj
+++ b/Procession.Sqlite/Procession.Sqlite.csproj
@@ -26,7 +26,7 @@
-
+
diff --git a/AgQueue.Sqlite/StorageSqlite.cs b/Procession.Sqlite/StorageSqlite.cs
similarity index 99%
rename from AgQueue.Sqlite/StorageSqlite.cs
rename to Procession.Sqlite/StorageSqlite.cs
index 365e1af..21f526e 100644
--- a/AgQueue.Sqlite/StorageSqlite.cs
+++ b/Procession.Sqlite/StorageSqlite.cs
@@ -10,13 +10,13 @@
using System.Threading.Tasks;
using Dapper;
using Microsoft.Data.Sqlite;
-using AgQueue.Common;
-using AgQueue.Common.Extensions;
-using AgQueue.Common.Models;
-using AgQueue.Server.Common;
-using AgQueue.Server.Common.Models;
+using Procession.Common;
+using Procession.Common.Extensions;
+using Procession.Common.Models;
+using Procession.Server.Common;
+using Procession.Server.Common.Models;
-namespace AgQueue.Sqlite
+namespace Procession.Sqlite
{
///
/// Implements the IStorage interface for storing and retriving queue date to SQLite.
diff --git a/AgQueue.Sqlite/stylecop.json b/Procession.Sqlite/stylecop.json
similarity index 100%
rename from AgQueue.Sqlite/stylecop.json
rename to Procession.Sqlite/stylecop.json
diff --git a/AgQueue.sln b/Procession.sln
similarity index 76%
rename from AgQueue.sln
rename to Procession.sln
index 5073f68..bc5ed72 100644
--- a/AgQueue.sln
+++ b/Procession.sln
@@ -5,30 +5,29 @@ VisualStudioVersion = 16.0.29728.190
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Benchmarks", "Benchmarks\Benchmarks.csproj", "{B9475FCF-283D-439B-AC4A-BB378D5EA163}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AgQueue.Common", "AgQueue.Common\AgQueue.Common.csproj", "{A920C10F-6E62-42E5-B5FC-1843FA8CEDF3}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Procession.Common", "Procession.Common\Procession.Common.csproj", "{A920C10F-6E62-42E5-B5FC-1843FA8CEDF3}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AgQueue.Sqlite", "AgQueue.Sqlite\AgQueue.Sqlite.csproj", "{6FD84ECB-9595-4847-8FD9-F5B3E8E99847}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Procession.Sqlite", "Procession.Sqlite\Procession.Sqlite.csproj", "{6FD84ECB-9595-4847-8FD9-F5B3E8E99847}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3D549DFA-1001-43E4-A70F-7FB55F222F0A}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
ApiToDoList.txt = ApiToDoList.txt
- AgQueue.Protos\greet.proto = AgQueue.Protos\greet.proto
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{DD29545F-A6A2-4167-97EE-B61191E0CE10}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AgQueue.Library.Tests", "tests\AgQueue.Library.Tests\AgQueue.Library.Tests.csproj", "{14567643-F0E0-46F5-B43E-D1DCD4BC3905}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Procession.Library.Tests", "tests\Procession.Library.Tests\Procession.Library.Tests.csproj", "{14567643-F0E0-46F5-B43E-D1DCD4BC3905}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ag.Integration.Tests", "tests\AgQueue.Integration.Tests\Ag.Integration.Tests.csproj", "{D3E4B18B-337A-4CE8-B194-5F6C5D4456BC}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Procession.Integration.Tests", "tests\Procession.Integration.Tests\Procession.Integration.Tests.csproj", "{D3E4B18B-337A-4CE8-B194-5F6C5D4456BC}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AgQueue.Models", "AgQueue.Models\AgQueue.Models.csproj", "{D6DB208F-A589-426D-B30B-A4B8DCB6DF96}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Procession.Models", "Procession.Models\Procession.Models.csproj", "{D6DB208F-A589-426D-B30B-A4B8DCB6DF96}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AgQueue.GrpcServer", "AgQueue.GrpcServer\AgQueue.GrpcServer.csproj", "{BD82D1A2-6AE2-4772-8ADE-A239CE523736}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Procession.GrpcServer", "Procession.GrpcServer\Procession.GrpcServer.csproj", "{BD82D1A2-6AE2-4772-8ADE-A239CE523736}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AgQueue.Server.Common", "AgQueue.Server.Common\AgQueue.Server.Common.csproj", "{1EE5F540-299F-437A-A2F9-0ADDD5B759A4}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Procession.Server.Common", "Procession.Server.Common\Procession.Server.Common.csproj", "{1EE5F540-299F-437A-A2F9-0ADDD5B759A4}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AgQueue.Postgres", "AgQueue.Postgres\AgQueue.Postgres.csproj", "{C65F1603-11CA-47BF-B5C6-5F91FF551C29}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Procession.Postgres", "Procession.Postgres\Procession.Postgres.csproj", "{C65F1603-11CA-47BF-B5C6-5F91FF551C29}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
diff --git a/README.md b/README.md
index f020f56..671db97 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,17 @@
-# AgQueue
+# Procession
A simple, opinionated, transactional work queue

-AgQueue is a server process that can use almost any database as it's back end. It essentially turns any supported database into a full fledged work queue.
+Procession is a server process that can use almost any database as its back end. It essentially turns any supported database into a full fledged work queue.
-AgQueue runs between the clients and the database and automatically provides features of an advanced work queue or messaging system.
+Procession runs between the clients and the database and automatically provides features of an advanced work queue or messaging system.
## Purpose
To reliably deliver messages to a requestor/subscriber. Successful messages are only delivered to one REQ/SUB. In case of failure, the message will be redelivered, after a delay, unless the retry count is exceeded.
-Have you ever used MSMQ, only to be impacted by it's limitations? For example, not being able to use priority with transactions. This aims to allieviate those pain points.
+Have you ever used MSMQ, only to be impacted by its limitations? For example, not being able to use priority with transactions. This aims to alleviate those pain points.
Besides, for simple work queues, MSMQ may be overkill. Same with RabbitMQ and others.
@@ -23,27 +23,27 @@ Besides, for simple work queues, MSMQ may be overkill. Same with RabbitMQ and o
### Example
-A classic example of when to use a work queue is sending email from a website. When your users request a password change or any other activity that will send an email, you don't want their browsing experience to slow down while the email is sent, so you place a message into a queue, which is near instant. In the background or on another machine, the message is picked up and and email is sent out.
+A classic example of when to use a work queue is sending email from a website. When your users request a password change or any other activity that will send an email, you don't want their browsing experience to slow down while the email is sent, so you place a message into a queue, which is near instant. In the background or on another machine, the message is picked up and an email is sent out.
-## AgQueue Features
+## Procession Features
* Transactions. Transactions are mandatory. Transactions have expiry timespans. Transactions can be explicitly extended for long running processes.
-* Priority. Messages are returned based on Priority and then by first in. Priority can be turned off my simply not setting it on each message.
+* Priority. Messages are returned based on Priority and then by first in. Priority can be turned off by simply not setting it on each message.
* Durable. Messages are always reliably stored to disk.
* Multiple Queues. Create as many queues as needed.
-* Baked-in Retry. Messages automatically reenter the queue after a Transaction rollback, BUT you can set a retry delay, eliminating need for a seperate retry queue and preventing poison messages.
+* Baked-in Retry. Messages automatically reenter the queue after a Transaction rollback, BUT you can set a retry delay, eliminating need for a separate retry queue and preventing poison messages.
* Optional message metadata. Allows storage of custom data relating to the message.
* FIFO or custom ordering based on json message metadata, correlation id, group name or tag value. Beware of orphaned messages!
* Optional Message History.
* Optional Correlation ID (integer) and/or Group string to assist with grouping of messages to pull.
-* Optional Tags. Tags can be applied to any message. A tag can also have a value, for example, year=2019. There can be multiple tags on a message. This is a more effeicient way of organizing and pulling messages than using the metadata.
+* Optional Tags. Tags can be applied to any message. A tag can also have a value, for example, year=2019. There can be multiple tags on a message. This is a more efficient way of organizing and pulling messages than using the metadata.
## Additional Details
-AgQueue consists of a server process that contains a gRPC communication server and a gRPC client for communicating with the queue.
+Procession consists of a server process that contains a gRPC communication server and a gRPC client for communicating with the queue.
-AgQueue uses SQLite for storage. While not as fast as using in-memory containers, it's HIGHLY resilient to machine failures, i.e. a spurious reboot won't cause your queue to disappear. At a future date, we may offer different storage options, including memory-only, for those that don't want durable storage.
+Procession uses SQLite for storage. While not as fast as using in-memory containers, it's HIGHLY resilient to machine failures, i.e. a spurious reboot won't cause your queue to disappear. At a future date, we may offer different storage options, including memory-only, for those that don't want durable storage.
-AgQueue is built with C# in .NET 9. This means it should run on Windows, Linux and Mac.
+Procession is built with C# in .NET 9. This means it should run on Windows, Linux and Mac.
-We'll post benchmarks once the project is complete, but the goal is more durability and resilency than raw speed.
+We'll post benchmarks once the project is complete, but the goal is more durability and resiliency than raw speed.
diff --git a/dev_overview.md b/dev_overview.md
index ffaa8d9..a3c8842 100644
--- a/dev_overview.md
+++ b/dev_overview.md
@@ -1,22 +1,22 @@
-# Development overview of AgQueue #
+# Development overview of Procession #
-This document serves as a collection of development notes and will grow substantially and become mroe organized over time.
+This document serves as a collection of development notes and will grow substantially and become more organized over time.
## Project Descriptions: ##
-AgQueue.Library - The API library performing queue and message functions. This is the core of the project. This library will be exposed via REST or a TCP server. It can use any storage library, although, currently only SQLite is supported.
+Procession.Library - The API library performing queue and message functions. This is the core of the project. This library will be exposed via REST or a TCP server. It can use any storage library, although, currently only SQLite is supported.
-AgQueue.Library.Tests - unit and integration tests for the Library project
+Procession.Library.Tests - unit and integration tests for the Library project
-AgQueue.TcpClient - A TCP client to communicate with AgQueue. This will be used to
+Procession.TcpClient - A TCP client to communicate with Procession. This will be used to
-AgQueue - Project for Server process hosting the AgQueue.Library. This will eventually be a TCP and REST server, configurable by a config file.
+Procession - Project for Server process hosting the Procession.Library. This will eventually be a TCP and REST server, configurable by a config file.
-AgQueue.Common - Will eventually contain interfaces for the client libraries
+Procession.Common - Will eventually contain interfaces for the client libraries
## Expected Development Timeline: ##
-Complete AgQueue.Library project. This should allow for the following functions:
+Complete Procession.Library project. This should allow for the following functions:
1) Create Transaction
2) Commit Transaction
@@ -30,7 +30,7 @@ Complete AgQueue.Library project. This should allow for the following functions
10) Delete Message - Deletes a message without marking it as processed
11) GetMessageCount - Get the number of message queued
-As each function is completed, unit tests should be created to comfirm functionality
+As each function is completed, unit tests should be created to confirm functionality
## Developer Expectations ##
@@ -38,7 +38,7 @@ Code should follow style cop recommendations. The style cop analyzer is checked
There should be no warnings in a Pull Requests.
-All public methods and properties should be well documented using the documentaion comment: ///
+All public methods and properties should be well documented using the documentation comment: ///
## Design Decisions ##
@@ -46,7 +46,7 @@ All public methods and properties should be well documented using the documentai
Primary keys are int64s. They are created by the application, instead of the database or storage mechanism. This allows for handling of storage that doesn't provide a way to increment the primary key.
-While using something like a GUID would come with certain advantages, I've seen problems with using them. Many databases don't index them effeciently when they aren't sequential. Performance could be impacted with a great deal of lookups by the primary key. I've seen SQLServer suffer when using GUIDs as the primary key.
+While using something like a GUID would come with certain advantages, I've seen problems with using them. Many databases don't index them efficiently when they aren't sequential. Performance could be impacted with a great deal of lookups by the primary key. I've seen SQLServer suffer when using GUIDs as the primary key.
Not using GUID has some serious tradeoffs. Only one process can use the storage, since multiple processes would cause primary key conflicts.
diff --git a/tests/AgQueue.Integration.Tests/BasicTests.cs b/tests/Procession.Integration.Tests/BasicTests.cs
similarity index 99%
rename from tests/AgQueue.Integration.Tests/BasicTests.cs
rename to tests/Procession.Integration.Tests/BasicTests.cs
index e6d5cc3..0edfa38 100644
--- a/tests/AgQueue.Integration.Tests/BasicTests.cs
+++ b/tests/Procession.Integration.Tests/BasicTests.cs
@@ -3,17 +3,17 @@
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Server.Kestrel.Core;
-using AgQueue.Common.Extensions;
+using Procession.Common.Extensions;
using Microsoft.Extensions.DependencyInjection;
-using AgQueue.Models;
+using Procession.Models;
using System.Threading.Tasks;
using Grpc.Net.ClientFactory;
using System;
using Grpc.Core;
using System.IO;
-using AgQueue.Server.Common;
+using Procession.Server.Common;
-namespace AgQueue.Integration.Tests
+namespace Procession.Integration.Tests
{
[TestClass]
public class BasicTests
diff --git a/tests/AgQueue.Integration.Tests/ContentionTests.cs b/tests/Procession.Integration.Tests/ContentionTests.cs
similarity index 98%
rename from tests/AgQueue.Integration.Tests/ContentionTests.cs
rename to tests/Procession.Integration.Tests/ContentionTests.cs
index e552d26..ca38d9e 100644
--- a/tests/AgQueue.Integration.Tests/ContentionTests.cs
+++ b/tests/Procession.Integration.Tests/ContentionTests.cs
@@ -3,8 +3,8 @@
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Server.Kestrel.Core;
-using AgQueue.Common.Extensions;
-using AgQueue.Models;
+using Procession.Common.Extensions;
+using Procession.Models;
using System.Threading.Tasks;
using Grpc.Net.ClientFactory;
using System;
@@ -12,10 +12,10 @@
using System.Collections.Concurrent;
using System.Linq;
using Microsoft.Extensions.Configuration;
-using AgQueue.Server.Common;
+using Procession.Server.Common;
using Microsoft.Extensions.DependencyInjection;
-namespace AgQueue.Integration.Tests
+namespace Procession.Integration.Tests
{
[TestClass]
public class ContentionTests
diff --git a/tests/AgQueue.Integration.Tests/Dockerfile b/tests/Procession.Integration.Tests/Dockerfile
similarity index 100%
rename from tests/AgQueue.Integration.Tests/Dockerfile
rename to tests/Procession.Integration.Tests/Dockerfile
diff --git a/tests/AgQueue.Integration.Tests/LargeDatasetTests.cs b/tests/Procession.Integration.Tests/LargeDatasetTests.cs
similarity index 98%
rename from tests/AgQueue.Integration.Tests/LargeDatasetTests.cs
rename to tests/Procession.Integration.Tests/LargeDatasetTests.cs
index 1afc68d..5365924 100644
--- a/tests/AgQueue.Integration.Tests/LargeDatasetTests.cs
+++ b/tests/Procession.Integration.Tests/LargeDatasetTests.cs
@@ -3,17 +3,17 @@
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Server.Kestrel.Core;
-using AgQueue.Common.Extensions;
+using Procession.Common.Extensions;
using Microsoft.Extensions.DependencyInjection;
-using AgQueue.Models;
+using Procession.Models;
using System.Threading.Tasks;
using Grpc.Net.ClientFactory;
using System;
using Grpc.Core;
using System.IO;
-using AgQueue.Server.Common;
+using Procession.Server.Common;
-namespace AgQueue.Integration.Tests
+namespace Procession.Integration.Tests
{
[TestClass]
public class LargeDatasetTests
diff --git a/tests/AgQueue.Integration.Tests/Ag.Integration.Tests.csproj b/tests/Procession.Integration.Tests/Procession.Integration.Tests.csproj
similarity index 78%
rename from tests/AgQueue.Integration.Tests/Ag.Integration.Tests.csproj
rename to tests/Procession.Integration.Tests/Procession.Integration.Tests.csproj
index 1ba8461..86eb760 100644
--- a/tests/AgQueue.Integration.Tests/Ag.Integration.Tests.csproj
+++ b/tests/Procession.Integration.Tests/Procession.Integration.Tests.csproj
@@ -23,9 +23,9 @@
-
-
-
+
+
+
diff --git a/tests/AgQueue.Integration.Tests/Properties/launchSettings.json b/tests/Procession.Integration.Tests/Properties/launchSettings.json
similarity index 100%
rename from tests/AgQueue.Integration.Tests/Properties/launchSettings.json
rename to tests/Procession.Integration.Tests/Properties/launchSettings.json
diff --git a/tests/AgQueue.Integration.Tests/StartupGrpc.cs b/tests/Procession.Integration.Tests/StartupGrpc.cs
similarity index 87%
rename from tests/AgQueue.Integration.Tests/StartupGrpc.cs
rename to tests/Procession.Integration.Tests/StartupGrpc.cs
index e8709df..36a8ed6 100644
--- a/tests/AgQueue.Integration.Tests/StartupGrpc.cs
+++ b/tests/Procession.Integration.Tests/StartupGrpc.cs
@@ -1,19 +1,19 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
-using AgQueue.Common;
-using AgQueue.Server.Common;
-using AgQueue.Sqlite;
+using Procession.Common;
+using Procession.Server.Common;
+using Procession.Sqlite;
using System;
using System.Collections.Generic;
using System.Text;
-using AgQueue.GrpcServer;
-using AgQueue.GrpcServer.Interceptors;
+using Procession.GrpcServer;
+using Procession.GrpcServer.Interceptors;
using Microsoft.Extensions.Configuration;
using System.IO;
using Microsoft.Extensions.Logging;
-namespace AgQueue.Integration.Tests
+namespace Procession.Integration.Tests
{
class StartupGrpc
{
@@ -47,7 +47,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
app.UseEndpoints(endpoints =>
{
- endpoints.MapGrpcService();
+ endpoints.MapGrpcService();
});
}
}
diff --git a/tests/AgQueue.Integration.Tests/TestScenarioList.txt b/tests/Procession.Integration.Tests/TestScenarioList.txt
similarity index 100%
rename from tests/AgQueue.Integration.Tests/TestScenarioList.txt
rename to tests/Procession.Integration.Tests/TestScenarioList.txt
diff --git a/tests/AgQueue.Integration.Tests/TimeoutTests.cs b/tests/Procession.Integration.Tests/TimeoutTests.cs
similarity index 98%
rename from tests/AgQueue.Integration.Tests/TimeoutTests.cs
rename to tests/Procession.Integration.Tests/TimeoutTests.cs
index a552cfc..ce870fc 100644
--- a/tests/AgQueue.Integration.Tests/TimeoutTests.cs
+++ b/tests/Procession.Integration.Tests/TimeoutTests.cs
@@ -3,19 +3,19 @@
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Server.Kestrel.Core;
-using AgQueue.Common.Extensions;
+using Procession.Common.Extensions;
using Microsoft.Extensions.DependencyInjection;
-using AgQueue.Models;
+using Procession.Models;
using System.Threading.Tasks;
using Grpc.Net.ClientFactory;
using System;
using Grpc.Core;
using System.IO;
-using AgQueue.Server.Common;
+using Procession.Server.Common;
using System.Reflection;
using System.Threading;
-namespace AgQueue.Integration.Tests
+namespace Procession.Integration.Tests
{
[TestClass]
public class TimeoutTests
diff --git a/tests/AgQueue.Library.Tests/IQueueApi.cs b/tests/Procession.Library.Tests/IQueueApi.cs
similarity index 83%
rename from tests/AgQueue.Library.Tests/IQueueApi.cs
rename to tests/Procession.Library.Tests/IQueueApi.cs
index 30bff5f..7e6b01a 100644
--- a/tests/AgQueue.Library.Tests/IQueueApi.cs
+++ b/tests/Procession.Library.Tests/IQueueApi.cs
@@ -3,7 +3,7 @@
using System.Linq;
using System.Threading.Tasks;
-namespace AgQueue.Server
+namespace Procession.Server
{
interface IQueueApi
{
diff --git a/tests/AgQueue.Library.Tests/MessageTests.cs b/tests/Procession.Library.Tests/MessageTests.cs
similarity index 95%
rename from tests/AgQueue.Library.Tests/MessageTests.cs
rename to tests/Procession.Library.Tests/MessageTests.cs
index dedf840..6cfd7b3 100644
--- a/tests/AgQueue.Library.Tests/MessageTests.cs
+++ b/tests/Procession.Library.Tests/MessageTests.cs
@@ -2,9 +2,9 @@
using System.Net.Sockets;
using NUnit;
using NUnit.Framework;
-using AgQueue.Library;
+using Procession.Library;
-namespace AgQueue.Library.Tests
+namespace Procession.Library.Tests
{
[TestFixture]
public class MessageTests
diff --git a/tests/AgQueue.Library.Tests/AgQueue.Library.Tests.csproj b/tests/Procession.Library.Tests/Procession.Library.Tests.csproj
similarity index 100%
rename from tests/AgQueue.Library.Tests/AgQueue.Library.Tests.csproj
rename to tests/Procession.Library.Tests/Procession.Library.Tests.csproj
diff --git a/tests/AgQueue.Library.Tests/QueueTests.cs b/tests/Procession.Library.Tests/QueueTests.cs
similarity index 98%
rename from tests/AgQueue.Library.Tests/QueueTests.cs
rename to tests/Procession.Library.Tests/QueueTests.cs
index fc8b1c4..cd82bee 100644
--- a/tests/AgQueue.Library.Tests/QueueTests.cs
+++ b/tests/Procession.Library.Tests/QueueTests.cs
@@ -2,9 +2,9 @@
using System.Net.Sockets;
using NUnit;
using NUnit.Framework;
-using AgQueue.Library;
+using Procession.Library;
-namespace AgQueue.Library.Tests
+namespace Procession.Library.Tests
{
[TestFixture]
public class QueueTests
diff --git a/tests/AgQueue.Library.Tests/Scenarios/ScenarioTests.cs b/tests/Procession.Library.Tests/Scenarios/ScenarioTests.cs
similarity index 97%
rename from tests/AgQueue.Library.Tests/Scenarios/ScenarioTests.cs
rename to tests/Procession.Library.Tests/Scenarios/ScenarioTests.cs
index bb2f1e1..4c199df 100644
--- a/tests/AgQueue.Library.Tests/Scenarios/ScenarioTests.cs
+++ b/tests/Procession.Library.Tests/Scenarios/ScenarioTests.cs
@@ -1,8 +1,8 @@
-namespace AgQueue.Library.Tests.Scenarios
+namespace Procession.Library.Tests.Scenarios
{
using NUnit;
using NUnit.Framework;
- using AgQueue.Library;
+ using Procession.Library;
///
/// Scenarios define the precisie expections of AgQueue with certain workflows. The build upon simple unit tests in many cases. They go from simple to complex.
diff --git a/tests/AgQueue.Library.Tests/stylecop.json b/tests/Procession.Library.Tests/stylecop.json
similarity index 100%
rename from tests/AgQueue.Library.Tests/stylecop.json
rename to tests/Procession.Library.Tests/stylecop.json