From 7f855f10341b9024bd3d1f5469860d4e049bdaee Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 26 Sep 2025 21:18:03 +0000
Subject: [PATCH 1/4] Initial plan
From 983b8ce71b8bcaef3dddf2db118360ec8f2ff90f Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 26 Sep 2025 21:21:15 +0000
Subject: [PATCH 2/4] Initial analysis: upgrading AgQueue project from .NET 5.0
to .NET 10
Co-authored-by: masilver99 <14352629+masilver99@users.noreply.github.com>
---
.../AgQueue/AgQueue.Common/AgQueue.Common.xml | 279 ++++++++++
.../AgQueue.Postgres/AgQueue.Postgres.xml | 137 +++++
.../AgQueue.Library/AgQueue.Library.xml | 503 ++++++++++++++++++
.../AgQueue/AgQueue.Sqlite/AgQueue.Sqlite.xml | 137 +++++
4 files changed, 1056 insertions(+)
create mode 100644 AgQueue.Common/C:/dev/AgQueue/AgQueue.Common/AgQueue.Common.xml
create mode 100644 AgQueue.Postgres/C:/dev/AgQueue/AgQueue.Postgres/AgQueue.Postgres.xml
create mode 100644 AgQueue.Server.Common/C:/dev/AgQueue/AgQueue.Library/AgQueue.Library.xml
create mode 100644 AgQueue.Sqlite/C:/dev/AgQueue/AgQueue.Sqlite/AgQueue.Sqlite.xml
diff --git a/AgQueue.Common/C:/dev/AgQueue/AgQueue.Common/AgQueue.Common.xml b/AgQueue.Common/C:/dev/AgQueue/AgQueue.Common/AgQueue.Common.xml
new file mode 100644
index 0000000..0c29af7
--- /dev/null
+++ b/AgQueue.Common/C:/dev/AgQueue/AgQueue.Common/AgQueue.Common.xml
@@ -0,0 +1,279 @@
+
+
+
+ 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.Postgres/C:/dev/AgQueue/AgQueue.Postgres/AgQueue.Postgres.xml b/AgQueue.Postgres/C:/dev/AgQueue/AgQueue.Postgres/AgQueue.Postgres.xml
new file mode 100644
index 0000000..311c700
--- /dev/null
+++ b/AgQueue.Postgres/C:/dev/AgQueue/AgQueue.Postgres/AgQueue.Postgres.xml
@@ -0,0 +1,137 @@
+
+
+
+ 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.Server.Common/C:/dev/AgQueue/AgQueue.Library/AgQueue.Library.xml b/AgQueue.Server.Common/C:/dev/AgQueue/AgQueue.Library/AgQueue.Library.xml
new file mode 100644
index 0000000..97022fb
--- /dev/null
+++ b/AgQueue.Server.Common/C:/dev/AgQueue/AgQueue.Library/AgQueue.Library.xml
@@ -0,0 +1,503 @@
+
+
+
+ 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.Sqlite/C:/dev/AgQueue/AgQueue.Sqlite/AgQueue.Sqlite.xml b/AgQueue.Sqlite/C:/dev/AgQueue/AgQueue.Sqlite/AgQueue.Sqlite.xml
new file mode 100644
index 0000000..c401fab
--- /dev/null
+++ b/AgQueue.Sqlite/C:/dev/AgQueue/AgQueue.Sqlite/AgQueue.Sqlite.xml
@@ -0,0 +1,137 @@
+
+
+
+ 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.
+
+
+
From 6f88987b743f9f87a81770604e656d6faa946dcc Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 26 Sep 2025 21:27:31 +0000
Subject: [PATCH 3/4] Upgrade project from .NET 5.0 to .NET 9.0 and update
documentation
Co-authored-by: masilver99 <14352629+masilver99@users.noreply.github.com>
---
.gitignore | 3 +
AgQueue.Common/AgQueue.Common.csproj | 2 +-
.../AgQueue/AgQueue.Common/AgQueue.Common.xml | 279 ----------
AgQueue.GrpcServer/AgQueue.GrpcServer.csproj | 2 +-
AgQueue.Models/AgQueue.Models.csproj | 2 +-
AgQueue.Postgres/AgQueue.Postgres.csproj | 2 +-
.../AgQueue.Postgres/AgQueue.Postgres.xml | 137 -----
.../AgQueue.Server.Common.csproj | 2 +-
.../AgQueue.Library/AgQueue.Library.xml | 503 ------------------
AgQueue.Sqlite/AgQueue.Sqlite.csproj | 2 +-
.../AgQueue/AgQueue.Sqlite/AgQueue.Sqlite.xml | 137 -----
Benchmarks/Benchmarks.csproj | 2 +-
README.md | 2 +-
.../Ag.Integration.Tests.csproj | 2 +-
tests/AgQueue.Integration.Tests/Dockerfile | 6 +-
.../AgQueue.Library.Tests.csproj | 2 +-
16 files changed, 16 insertions(+), 1069 deletions(-)
delete mode 100644 AgQueue.Common/C:/dev/AgQueue/AgQueue.Common/AgQueue.Common.xml
delete mode 100644 AgQueue.Postgres/C:/dev/AgQueue/AgQueue.Postgres/AgQueue.Postgres.xml
delete mode 100644 AgQueue.Server.Common/C:/dev/AgQueue/AgQueue.Library/AgQueue.Library.xml
delete mode 100644 AgQueue.Sqlite/C:/dev/AgQueue/AgQueue.Sqlite/AgQueue.Sqlite.xml
diff --git a/.gitignore b/.gitignore
index 3c4efe2..d89719c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -163,6 +163,9 @@ PublishScripts/
*.nuget.props
*.nuget.targets
+# Generated XML documentation files
+*.xml
+
# Microsoft Azure Build Output
csx/
*.build.csdef
diff --git a/AgQueue.Common/AgQueue.Common.csproj b/AgQueue.Common/AgQueue.Common.csproj
index af7ff1b..6155b9c 100644
--- a/AgQueue.Common/AgQueue.Common.csproj
+++ b/AgQueue.Common/AgQueue.Common.csproj
@@ -1,7 +1,7 @@
- net5.0
+ net9.0
false
diff --git a/AgQueue.Common/C:/dev/AgQueue/AgQueue.Common/AgQueue.Common.xml b/AgQueue.Common/C:/dev/AgQueue/AgQueue.Common/AgQueue.Common.xml
deleted file mode 100644
index 0c29af7..0000000
--- a/AgQueue.Common/C:/dev/AgQueue/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
index 75654ca..e7d7d66 100644
--- a/AgQueue.GrpcServer/AgQueue.GrpcServer.csproj
+++ b/AgQueue.GrpcServer/AgQueue.GrpcServer.csproj
@@ -1,7 +1,7 @@
- net5.0
+ net9.0
diff --git a/AgQueue.Models/AgQueue.Models.csproj b/AgQueue.Models/AgQueue.Models.csproj
index be98212..bceae60 100644
--- a/AgQueue.Models/AgQueue.Models.csproj
+++ b/AgQueue.Models/AgQueue.Models.csproj
@@ -1,7 +1,7 @@
- net5.0
+ net9.0
diff --git a/AgQueue.Postgres/AgQueue.Postgres.csproj b/AgQueue.Postgres/AgQueue.Postgres.csproj
index 582c54f..812c3ba 100644
--- a/AgQueue.Postgres/AgQueue.Postgres.csproj
+++ b/AgQueue.Postgres/AgQueue.Postgres.csproj
@@ -1,7 +1,7 @@
- net5.0
+ net9.0
enable
diff --git a/AgQueue.Postgres/C:/dev/AgQueue/AgQueue.Postgres/AgQueue.Postgres.xml b/AgQueue.Postgres/C:/dev/AgQueue/AgQueue.Postgres/AgQueue.Postgres.xml
deleted file mode 100644
index 311c700..0000000
--- a/AgQueue.Postgres/C:/dev/AgQueue/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.Server.Common/AgQueue.Server.Common.csproj b/AgQueue.Server.Common/AgQueue.Server.Common.csproj
index 469916f..1fe7dca 100644
--- a/AgQueue.Server.Common/AgQueue.Server.Common.csproj
+++ b/AgQueue.Server.Common/AgQueue.Server.Common.csproj
@@ -1,7 +1,7 @@
- net5.0
+ net9.0
Michael Silver
Michael Silver
Michael Silver
diff --git a/AgQueue.Server.Common/C:/dev/AgQueue/AgQueue.Library/AgQueue.Library.xml b/AgQueue.Server.Common/C:/dev/AgQueue/AgQueue.Library/AgQueue.Library.xml
deleted file mode 100644
index 97022fb..0000000
--- a/AgQueue.Server.Common/C:/dev/AgQueue/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.Sqlite/AgQueue.Sqlite.csproj b/AgQueue.Sqlite/AgQueue.Sqlite.csproj
index 8952523..b58804d 100644
--- a/AgQueue.Sqlite/AgQueue.Sqlite.csproj
+++ b/AgQueue.Sqlite/AgQueue.Sqlite.csproj
@@ -1,7 +1,7 @@
- net5.0
+ net9.0
enable
diff --git a/AgQueue.Sqlite/C:/dev/AgQueue/AgQueue.Sqlite/AgQueue.Sqlite.xml b/AgQueue.Sqlite/C:/dev/AgQueue/AgQueue.Sqlite/AgQueue.Sqlite.xml
deleted file mode 100644
index c401fab..0000000
--- a/AgQueue.Sqlite/C:/dev/AgQueue/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/Benchmarks/Benchmarks.csproj b/Benchmarks/Benchmarks.csproj
index 5a985af..ff1c7c1 100644
--- a/Benchmarks/Benchmarks.csproj
+++ b/Benchmarks/Benchmarks.csproj
@@ -2,7 +2,7 @@
Exe
- net5.0
+ net9.0
diff --git a/README.md b/README.md
index 2a0020e..f020f56 100644
--- a/README.md
+++ b/README.md
@@ -44,6 +44,6 @@ AgQueue consists of a server process that contains a gRPC communication server a
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.
-AgQueue is built with C# in .NET Core 3.1. This means it should run on Windows, Linux and Mac.
+AgQueue 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.
diff --git a/tests/AgQueue.Integration.Tests/Ag.Integration.Tests.csproj b/tests/AgQueue.Integration.Tests/Ag.Integration.Tests.csproj
index 4a95bd7..7724295 100644
--- a/tests/AgQueue.Integration.Tests/Ag.Integration.Tests.csproj
+++ b/tests/AgQueue.Integration.Tests/Ag.Integration.Tests.csproj
@@ -1,7 +1,7 @@
- net5.0
+ net9.0
false
diff --git a/tests/AgQueue.Integration.Tests/Dockerfile b/tests/AgQueue.Integration.Tests/Dockerfile
index b082da4..1069434 100644
--- a/tests/AgQueue.Integration.Tests/Dockerfile
+++ b/tests/AgQueue.Integration.Tests/Dockerfile
@@ -12,13 +12,13 @@ RUN #set -eux; \
apt-get update; \
apt-get install -y apt-transport-https \
apt-get update \
- apt-get install -y dotnet-sdk-5.
+ apt-get install -y dotnet-sdk-9.0
-#FROM mcr.microsoft.com/dotnet/runtime:5.0-buster-slim AS base
+#FROM mcr.microsoft.com/dotnet/runtime:9.0-bookworm-slim AS base
WORKDIR /app
-#FROM mcr.microsoft.com/dotnet/sdk:5.0-buster-slim AS build
+#FROM mcr.microsoft.com/dotnet/sdk:9.0-bookworm-slim AS build
FROM postgres:13 AS build
WORKDIR /src
COPY ["tests/AgQueue.Integration.Tests/AgQueue.Integration.Tests.csproj", "tests/AgQueue.Integration.Tests/"]
diff --git a/tests/AgQueue.Library.Tests/AgQueue.Library.Tests.csproj b/tests/AgQueue.Library.Tests/AgQueue.Library.Tests.csproj
index 124cda8..0de2834 100644
--- a/tests/AgQueue.Library.Tests/AgQueue.Library.Tests.csproj
+++ b/tests/AgQueue.Library.Tests/AgQueue.Library.Tests.csproj
@@ -1,7 +1,7 @@
- net5.0
+ net9.0
false
From 84d0de82f6743cb6d45a0086ca4dd93e08ee7320 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Fri, 26 Sep 2025 21:32:22 +0000
Subject: [PATCH 4/4] Complete .NET 9.0 upgrade: updated all packages and fixed
documentation paths
Co-authored-by: masilver99 <14352629+masilver99@users.noreply.github.com>
---
AgQueue.Common/AgQueue.Common.csproj | 6 +-
AgQueue.GrpcServer/AgQueue.GrpcServer.csproj | 2 +-
AgQueue.Models/AgQueue.Models.csproj | 2 +-
AgQueue.Models/AgQueue.cs | 838 ++++++++++++++++--
AgQueue.Models/AgQueueGrpc.cs | 117 ++-
AgQueue.Postgres/AgQueue.Postgres.csproj | 6 +-
.../AgQueue.Server.Common.csproj | 12 +-
AgQueue.Sqlite/AgQueue.Sqlite.csproj | 10 +-
Benchmarks/Benchmarks.csproj | 4 +-
.../Ag.Integration.Tests.csproj | 14 +-
.../AgQueue.Library.Tests.csproj | 8 +-
11 files changed, 930 insertions(+), 89 deletions(-)
diff --git a/AgQueue.Common/AgQueue.Common.csproj b/AgQueue.Common/AgQueue.Common.csproj
index 6155b9c..8527966 100644
--- a/AgQueue.Common/AgQueue.Common.csproj
+++ b/AgQueue.Common/AgQueue.Common.csproj
@@ -10,16 +10,16 @@
- C:\dev\AgQueue\AgQueue.Common\AgQueue.Common.xml
+ $(OutputPath)$(AssemblyName).xml
-
+
all
runtime; build; native; contentfiles; analyzers
-
+
diff --git a/AgQueue.GrpcServer/AgQueue.GrpcServer.csproj b/AgQueue.GrpcServer/AgQueue.GrpcServer.csproj
index e7d7d66..b3adb32 100644
--- a/AgQueue.GrpcServer/AgQueue.GrpcServer.csproj
+++ b/AgQueue.GrpcServer/AgQueue.GrpcServer.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/AgQueue.Models/AgQueue.Models.csproj b/AgQueue.Models/AgQueue.Models.csproj
index bceae60..905daeb 100644
--- a/AgQueue.Models/AgQueue.Models.csproj
+++ b/AgQueue.Models/AgQueue.Models.csproj
@@ -9,7 +9,7 @@
-
+
diff --git a/AgQueue.Models/AgQueue.cs b/AgQueue.Models/AgQueue.cs
index c14d314..84f3674 100644
--- a/AgQueue.Models/AgQueue.cs
+++ b/AgQueue.Models/AgQueue.cs
@@ -2,7 +2,7 @@
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: AgQueue.proto
//
-#pragma warning disable 1591, 0612, 3021
+#pragma warning disable 1591, 0612, 3021, 8981
#region Designer generated code
using pb = global::Google.Protobuf;
@@ -149,6 +149,7 @@ public enum TransactionAction {
#endregion
#region Messages
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class GetQueueInfoResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -157,19 +158,23 @@ public sealed partial class GetQueueInfoResponse : pb::IMessage _parser = new pb::MessageParser(() => new GetQueueInfoResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[0]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public GetQueueInfoResponse() {
OnConstruction();
}
@@ -177,6 +182,7 @@ public GetQueueInfoResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public GetQueueInfoResponse(GetQueueInfoResponse other) : this() {
recordFound_ = other.recordFound_;
queueId_ = other.queueId_;
@@ -185,6 +191,7 @@ public GetQueueInfoResponse(GetQueueInfoResponse other) : this() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public GetQueueInfoResponse Clone() {
return new GetQueueInfoResponse(this);
}
@@ -193,6 +200,7 @@ public GetQueueInfoResponse Clone() {
public const int RecordFoundFieldNumber = 1;
private bool recordFound_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool RecordFound {
get { return recordFound_; }
set {
@@ -204,6 +212,7 @@ public bool RecordFound {
public const int QueueIdFieldNumber = 2;
private long queueId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long QueueId {
get { return queueId_; }
set {
@@ -215,6 +224,7 @@ public long QueueId {
public const int QueueNameFieldNumber = 3;
private string queueName_ = "";
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string QueueName {
get { return queueName_; }
set {
@@ -223,11 +233,13 @@ public string QueueName {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as GetQueueInfoResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(GetQueueInfoResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -242,6 +254,7 @@ public bool Equals(GetQueueInfoResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (RecordFound != false) hash ^= RecordFound.GetHashCode();
@@ -254,11 +267,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -283,6 +298,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (RecordFound != false) {
output.WriteRawTag(8);
@@ -303,6 +319,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (RecordFound != false) {
@@ -321,6 +338,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(GetQueueInfoResponse other) {
if (other == null) {
return;
@@ -338,13 +356,18 @@ public void MergeFrom(GetQueueInfoResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -367,10 +390,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -393,6 +421,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class GetQueueInfoByNameRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -401,19 +430,23 @@ public sealed partial class GetQueueInfoByNameRequest : pb::IMessage _parser = new pb::MessageParser(() => new GetQueueInfoByNameRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[1]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public GetQueueInfoByNameRequest() {
OnConstruction();
}
@@ -421,12 +454,14 @@ public GetQueueInfoByNameRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public GetQueueInfoByNameRequest(GetQueueInfoByNameRequest other) : this() {
queueName_ = other.queueName_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public GetQueueInfoByNameRequest Clone() {
return new GetQueueInfoByNameRequest(this);
}
@@ -435,6 +470,7 @@ public GetQueueInfoByNameRequest Clone() {
public const int QueueNameFieldNumber = 1;
private string queueName_ = "";
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string QueueName {
get { return queueName_; }
set {
@@ -443,11 +479,13 @@ public string QueueName {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as GetQueueInfoByNameRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(GetQueueInfoByNameRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -460,6 +498,7 @@ public bool Equals(GetQueueInfoByNameRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (QueueName.Length != 0) hash ^= QueueName.GetHashCode();
@@ -470,11 +509,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -491,6 +532,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (QueueName.Length != 0) {
output.WriteRawTag(10);
@@ -503,6 +545,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (QueueName.Length != 0) {
@@ -515,6 +558,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(GetQueueInfoByNameRequest other) {
if (other == null) {
return;
@@ -526,13 +570,18 @@ public void MergeFrom(GetQueueInfoByNameRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -547,10 +596,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -565,6 +619,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class GetQueueInfoByIdRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -573,19 +628,23 @@ public sealed partial class GetQueueInfoByIdRequest : pb::IMessage _parser = new pb::MessageParser(() => new GetQueueInfoByIdRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[2]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public GetQueueInfoByIdRequest() {
OnConstruction();
}
@@ -593,12 +652,14 @@ public GetQueueInfoByIdRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public GetQueueInfoByIdRequest(GetQueueInfoByIdRequest other) : this() {
queueId_ = other.queueId_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public GetQueueInfoByIdRequest Clone() {
return new GetQueueInfoByIdRequest(this);
}
@@ -607,6 +668,7 @@ public GetQueueInfoByIdRequest Clone() {
public const int QueueIdFieldNumber = 1;
private long queueId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long QueueId {
get { return queueId_; }
set {
@@ -615,11 +677,13 @@ public long QueueId {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as GetQueueInfoByIdRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(GetQueueInfoByIdRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -632,6 +696,7 @@ public bool Equals(GetQueueInfoByIdRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (QueueId != 0L) hash ^= QueueId.GetHashCode();
@@ -642,11 +707,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -663,6 +730,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (QueueId != 0L) {
output.WriteRawTag(8);
@@ -675,6 +743,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (QueueId != 0L) {
@@ -687,6 +756,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(GetQueueInfoByIdRequest other) {
if (other == null) {
return;
@@ -698,13 +768,18 @@ public void MergeFrom(GetQueueInfoByIdRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -719,10 +794,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -740,6 +820,7 @@ public void MergeFrom(pb::CodedInputStream input) {
///
/// The request message containing the user's name.
///
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class CreateQueueRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -748,19 +829,23 @@ public sealed partial class CreateQueueRequest : pb::IMessage _parser = new pb::MessageParser(() => new CreateQueueRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[3]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CreateQueueRequest() {
OnConstruction();
}
@@ -768,12 +853,14 @@ public CreateQueueRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CreateQueueRequest(CreateQueueRequest other) : this() {
queueName_ = other.queueName_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CreateQueueRequest Clone() {
return new CreateQueueRequest(this);
}
@@ -782,6 +869,7 @@ public CreateQueueRequest Clone() {
public const int QueueNameFieldNumber = 1;
private string queueName_ = "";
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string QueueName {
get { return queueName_; }
set {
@@ -790,11 +878,13 @@ public string QueueName {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as CreateQueueRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(CreateQueueRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -807,6 +897,7 @@ public bool Equals(CreateQueueRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (QueueName.Length != 0) hash ^= QueueName.GetHashCode();
@@ -817,11 +908,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -838,6 +931,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (QueueName.Length != 0) {
output.WriteRawTag(10);
@@ -850,6 +944,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (QueueName.Length != 0) {
@@ -862,6 +957,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(CreateQueueRequest other) {
if (other == null) {
return;
@@ -873,13 +969,18 @@ public void MergeFrom(CreateQueueRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -894,10 +995,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -915,6 +1021,7 @@ public void MergeFrom(pb::CodedInputStream input) {
///
/// The response message containing the greetings.
///
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class CreateQueueResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -923,19 +1030,23 @@ public sealed partial class CreateQueueResponse : pb::IMessage _parser = new pb::MessageParser(() => new CreateQueueResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[4]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CreateQueueResponse() {
OnConstruction();
}
@@ -943,6 +1054,7 @@ public CreateQueueResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CreateQueueResponse(CreateQueueResponse other) : this() {
queueId_ = other.queueId_;
queueName_ = other.queueName_;
@@ -950,6 +1062,7 @@ public CreateQueueResponse(CreateQueueResponse other) : this() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CreateQueueResponse Clone() {
return new CreateQueueResponse(this);
}
@@ -958,6 +1071,7 @@ public CreateQueueResponse Clone() {
public const int QueueIdFieldNumber = 1;
private long queueId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long QueueId {
get { return queueId_; }
set {
@@ -972,6 +1086,7 @@ public long QueueId {
/// Standardized Name
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string QueueName {
get { return queueName_; }
set {
@@ -980,11 +1095,13 @@ public string QueueName {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as CreateQueueResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(CreateQueueResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -998,6 +1115,7 @@ public bool Equals(CreateQueueResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (QueueId != 0L) hash ^= QueueId.GetHashCode();
@@ -1009,11 +1127,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -1034,6 +1154,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (QueueId != 0L) {
output.WriteRawTag(8);
@@ -1050,6 +1171,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (QueueId != 0L) {
@@ -1065,6 +1187,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(CreateQueueResponse other) {
if (other == null) {
return;
@@ -1079,13 +1202,18 @@ public void MergeFrom(CreateQueueResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -1104,10 +1232,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -1126,6 +1259,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class InitializeStorageRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -1134,19 +1268,23 @@ public sealed partial class InitializeStorageRequest : pb::IMessage _parser = new pb::MessageParser(() => new InitializeStorageRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[5]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public InitializeStorageRequest() {
OnConstruction();
}
@@ -1154,12 +1292,14 @@ public InitializeStorageRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public InitializeStorageRequest(InitializeStorageRequest other) : this() {
deleteExistingData_ = other.deleteExistingData_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public InitializeStorageRequest Clone() {
return new InitializeStorageRequest(this);
}
@@ -1168,6 +1308,7 @@ public InitializeStorageRequest Clone() {
public const int DeleteExistingDataFieldNumber = 1;
private bool deleteExistingData_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool DeleteExistingData {
get { return deleteExistingData_; }
set {
@@ -1176,11 +1317,13 @@ public bool DeleteExistingData {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as InitializeStorageRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(InitializeStorageRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -1193,6 +1336,7 @@ public bool Equals(InitializeStorageRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (DeleteExistingData != false) hash ^= DeleteExistingData.GetHashCode();
@@ -1203,11 +1347,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -1224,6 +1370,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (DeleteExistingData != false) {
output.WriteRawTag(8);
@@ -1236,6 +1383,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (DeleteExistingData != false) {
@@ -1248,6 +1396,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(InitializeStorageRequest other) {
if (other == null) {
return;
@@ -1259,13 +1408,18 @@ public void MergeFrom(InitializeStorageRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -1280,10 +1434,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -1298,6 +1457,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class InitializeStorageResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -1306,19 +1466,23 @@ public sealed partial class InitializeStorageResponse : pb::IMessage _parser = new pb::MessageParser(() => new InitializeStorageResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[6]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public InitializeStorageResponse() {
OnConstruction();
}
@@ -1326,21 +1490,25 @@ public InitializeStorageResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public InitializeStorageResponse(InitializeStorageResponse other) : this() {
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public InitializeStorageResponse Clone() {
return new InitializeStorageResponse(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as InitializeStorageResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(InitializeStorageResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -1352,6 +1520,7 @@ public bool Equals(InitializeStorageResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (_unknownFields != null) {
@@ -1361,11 +1530,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -1378,6 +1549,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (_unknownFields != null) {
_unknownFields.WriteTo(ref output);
@@ -1386,6 +1558,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (_unknownFields != null) {
@@ -1395,6 +1568,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(InitializeStorageResponse other) {
if (other == null) {
return;
@@ -1403,13 +1577,18 @@ public void MergeFrom(InitializeStorageResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -1420,10 +1599,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -1434,6 +1618,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class DeleteQueueByIdRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -1442,19 +1627,23 @@ public sealed partial class DeleteQueueByIdRequest : pb::IMessage _parser = new pb::MessageParser(() => new DeleteQueueByIdRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[7]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByIdRequest() {
OnConstruction();
}
@@ -1462,12 +1651,14 @@ public DeleteQueueByIdRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByIdRequest(DeleteQueueByIdRequest other) : this() {
queueId_ = other.queueId_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByIdRequest Clone() {
return new DeleteQueueByIdRequest(this);
}
@@ -1476,6 +1667,7 @@ public DeleteQueueByIdRequest Clone() {
public const int QueueIdFieldNumber = 1;
private long queueId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long QueueId {
get { return queueId_; }
set {
@@ -1484,11 +1676,13 @@ public long QueueId {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as DeleteQueueByIdRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(DeleteQueueByIdRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -1501,6 +1695,7 @@ public bool Equals(DeleteQueueByIdRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (QueueId != 0L) hash ^= QueueId.GetHashCode();
@@ -1511,11 +1706,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -1532,6 +1729,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (QueueId != 0L) {
output.WriteRawTag(8);
@@ -1544,6 +1742,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (QueueId != 0L) {
@@ -1556,6 +1755,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(DeleteQueueByIdRequest other) {
if (other == null) {
return;
@@ -1567,13 +1767,18 @@ public void MergeFrom(DeleteQueueByIdRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -1588,10 +1793,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -1606,6 +1816,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class DeleteQueueByIdResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -1614,19 +1825,23 @@ public sealed partial class DeleteQueueByIdResponse : pb::IMessage _parser = new pb::MessageParser(() => new DeleteQueueByIdResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[8]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByIdResponse() {
OnConstruction();
}
@@ -1634,21 +1849,25 @@ public DeleteQueueByIdResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByIdResponse(DeleteQueueByIdResponse other) : this() {
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByIdResponse Clone() {
return new DeleteQueueByIdResponse(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as DeleteQueueByIdResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(DeleteQueueByIdResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -1660,6 +1879,7 @@ public bool Equals(DeleteQueueByIdResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (_unknownFields != null) {
@@ -1669,11 +1889,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -1686,6 +1908,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (_unknownFields != null) {
_unknownFields.WriteTo(ref output);
@@ -1694,6 +1917,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (_unknownFields != null) {
@@ -1703,6 +1927,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(DeleteQueueByIdResponse other) {
if (other == null) {
return;
@@ -1711,13 +1936,18 @@ public void MergeFrom(DeleteQueueByIdResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -1728,10 +1958,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -1742,6 +1977,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class DeleteQueueByNameRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -1750,19 +1986,23 @@ public sealed partial class DeleteQueueByNameRequest : pb::IMessage _parser = new pb::MessageParser(() => new DeleteQueueByNameRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[9]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByNameRequest() {
OnConstruction();
}
@@ -1770,12 +2010,14 @@ public DeleteQueueByNameRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByNameRequest(DeleteQueueByNameRequest other) : this() {
queueName_ = other.queueName_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByNameRequest Clone() {
return new DeleteQueueByNameRequest(this);
}
@@ -1784,6 +2026,7 @@ public DeleteQueueByNameRequest Clone() {
public const int QueueNameFieldNumber = 1;
private string queueName_ = "";
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string QueueName {
get { return queueName_; }
set {
@@ -1792,11 +2035,13 @@ public string QueueName {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as DeleteQueueByNameRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(DeleteQueueByNameRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -1809,6 +2054,7 @@ public bool Equals(DeleteQueueByNameRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (QueueName.Length != 0) hash ^= QueueName.GetHashCode();
@@ -1819,11 +2065,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -1840,6 +2088,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (QueueName.Length != 0) {
output.WriteRawTag(10);
@@ -1852,6 +2101,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (QueueName.Length != 0) {
@@ -1864,6 +2114,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(DeleteQueueByNameRequest other) {
if (other == null) {
return;
@@ -1875,13 +2126,18 @@ public void MergeFrom(DeleteQueueByNameRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -1896,10 +2152,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -1914,6 +2175,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class DeleteQueueByNameResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -1922,19 +2184,23 @@ public sealed partial class DeleteQueueByNameResponse : pb::IMessage _parser = new pb::MessageParser(() => new DeleteQueueByNameResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[10]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByNameResponse() {
OnConstruction();
}
@@ -1942,21 +2208,25 @@ public DeleteQueueByNameResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByNameResponse(DeleteQueueByNameResponse other) : this() {
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DeleteQueueByNameResponse Clone() {
return new DeleteQueueByNameResponse(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as DeleteQueueByNameResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(DeleteQueueByNameResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -1968,6 +2238,7 @@ public bool Equals(DeleteQueueByNameResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (_unknownFields != null) {
@@ -1977,11 +2248,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -1994,6 +2267,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (_unknownFields != null) {
_unknownFields.WriteTo(ref output);
@@ -2002,6 +2276,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (_unknownFields != null) {
@@ -2011,6 +2286,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(DeleteQueueByNameResponse other) {
if (other == null) {
return;
@@ -2019,13 +2295,18 @@ public void MergeFrom(DeleteQueueByNameResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -2036,10 +2317,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -2050,6 +2336,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class StartTransactionRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -2058,19 +2345,23 @@ public sealed partial class StartTransactionRequest : pb::IMessage _parser = new pb::MessageParser(() => new StartTransactionRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[11]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public StartTransactionRequest() {
OnConstruction();
}
@@ -2078,12 +2369,14 @@ public StartTransactionRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public StartTransactionRequest(StartTransactionRequest other) : this() {
expireInMin_ = other.expireInMin_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public StartTransactionRequest Clone() {
return new StartTransactionRequest(this);
}
@@ -2092,6 +2385,7 @@ public StartTransactionRequest Clone() {
public const int ExpireInMinFieldNumber = 1;
private int expireInMin_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int ExpireInMin {
get { return expireInMin_; }
set {
@@ -2100,11 +2394,13 @@ public int ExpireInMin {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as StartTransactionRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(StartTransactionRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -2117,6 +2413,7 @@ public bool Equals(StartTransactionRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (ExpireInMin != 0) hash ^= ExpireInMin.GetHashCode();
@@ -2127,11 +2424,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -2148,6 +2447,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (ExpireInMin != 0) {
output.WriteRawTag(8);
@@ -2160,6 +2460,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (ExpireInMin != 0) {
@@ -2172,6 +2473,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(StartTransactionRequest other) {
if (other == null) {
return;
@@ -2183,13 +2485,18 @@ public void MergeFrom(StartTransactionRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -2204,10 +2511,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -2222,6 +2534,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class StartTransactionResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -2230,19 +2543,23 @@ public sealed partial class StartTransactionResponse : pb::IMessage _parser = new pb::MessageParser(() => new StartTransactionResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[12]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public StartTransactionResponse() {
OnConstruction();
}
@@ -2250,12 +2567,14 @@ public StartTransactionResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public StartTransactionResponse(StartTransactionResponse other) : this() {
transId_ = other.transId_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public StartTransactionResponse Clone() {
return new StartTransactionResponse(this);
}
@@ -2264,6 +2583,7 @@ public StartTransactionResponse Clone() {
public const int TransIdFieldNumber = 1;
private long transId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long TransId {
get { return transId_; }
set {
@@ -2272,11 +2592,13 @@ public long TransId {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as StartTransactionResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(StartTransactionResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -2289,6 +2611,7 @@ public bool Equals(StartTransactionResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (TransId != 0L) hash ^= TransId.GetHashCode();
@@ -2299,11 +2622,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -2320,6 +2645,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (TransId != 0L) {
output.WriteRawTag(8);
@@ -2332,6 +2658,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (TransId != 0L) {
@@ -2344,6 +2671,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(StartTransactionResponse other) {
if (other == null) {
return;
@@ -2355,13 +2683,18 @@ public void MergeFrom(StartTransactionResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -2376,10 +2709,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -2394,6 +2732,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class CommitTransactionRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -2402,19 +2741,23 @@ public sealed partial class CommitTransactionRequest : pb::IMessage _parser = new pb::MessageParser(() => new CommitTransactionRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[13]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CommitTransactionRequest() {
OnConstruction();
}
@@ -2422,12 +2765,14 @@ public CommitTransactionRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CommitTransactionRequest(CommitTransactionRequest other) : this() {
transId_ = other.transId_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CommitTransactionRequest Clone() {
return new CommitTransactionRequest(this);
}
@@ -2436,6 +2781,7 @@ public CommitTransactionRequest Clone() {
public const int TransIdFieldNumber = 1;
private long transId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long TransId {
get { return transId_; }
set {
@@ -2444,11 +2790,13 @@ public long TransId {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as CommitTransactionRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(CommitTransactionRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -2461,6 +2809,7 @@ public bool Equals(CommitTransactionRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (TransId != 0L) hash ^= TransId.GetHashCode();
@@ -2471,11 +2820,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -2492,6 +2843,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (TransId != 0L) {
output.WriteRawTag(8);
@@ -2504,6 +2856,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (TransId != 0L) {
@@ -2516,6 +2869,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(CommitTransactionRequest other) {
if (other == null) {
return;
@@ -2527,13 +2881,18 @@ public void MergeFrom(CommitTransactionRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -2548,10 +2907,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -2566,6 +2930,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class CommitTransactionResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -2574,19 +2939,23 @@ public sealed partial class CommitTransactionResponse : pb::IMessage _parser = new pb::MessageParser(() => new CommitTransactionResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[14]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CommitTransactionResponse() {
OnConstruction();
}
@@ -2594,6 +2963,7 @@ public CommitTransactionResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CommitTransactionResponse(CommitTransactionResponse other) : this() {
messagesAdded_ = other.messagesAdded_;
messagesPulled_ = other.messagesPulled_;
@@ -2601,6 +2971,7 @@ public CommitTransactionResponse(CommitTransactionResponse other) : this() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public CommitTransactionResponse Clone() {
return new CommitTransactionResponse(this);
}
@@ -2609,6 +2980,7 @@ public CommitTransactionResponse Clone() {
public const int MessagesAddedFieldNumber = 1;
private int messagesAdded_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int MessagesAdded {
get { return messagesAdded_; }
set {
@@ -2620,6 +2992,7 @@ public int MessagesAdded {
public const int MessagesPulledFieldNumber = 2;
private int messagesPulled_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int MessagesPulled {
get { return messagesPulled_; }
set {
@@ -2628,11 +3001,13 @@ public int MessagesPulled {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as CommitTransactionResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(CommitTransactionResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -2646,6 +3021,7 @@ public bool Equals(CommitTransactionResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (MessagesAdded != 0) hash ^= MessagesAdded.GetHashCode();
@@ -2657,11 +3033,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -2682,6 +3060,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (MessagesAdded != 0) {
output.WriteRawTag(8);
@@ -2698,6 +3077,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (MessagesAdded != 0) {
@@ -2713,6 +3093,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(CommitTransactionResponse other) {
if (other == null) {
return;
@@ -2727,13 +3108,18 @@ public void MergeFrom(CommitTransactionResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -2752,10 +3138,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -2774,6 +3165,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class RollbackTransactionRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -2782,19 +3174,23 @@ public sealed partial class RollbackTransactionRequest : pb::IMessage _parser = new pb::MessageParser(() => new RollbackTransactionRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[15]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public RollbackTransactionRequest() {
OnConstruction();
}
@@ -2802,12 +3198,14 @@ public RollbackTransactionRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public RollbackTransactionRequest(RollbackTransactionRequest other) : this() {
transId_ = other.transId_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public RollbackTransactionRequest Clone() {
return new RollbackTransactionRequest(this);
}
@@ -2816,6 +3214,7 @@ public RollbackTransactionRequest Clone() {
public const int TransIdFieldNumber = 1;
private long transId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long TransId {
get { return transId_; }
set {
@@ -2824,11 +3223,13 @@ public long TransId {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as RollbackTransactionRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(RollbackTransactionRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -2841,6 +3242,7 @@ public bool Equals(RollbackTransactionRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (TransId != 0L) hash ^= TransId.GetHashCode();
@@ -2851,11 +3253,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -2872,6 +3276,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (TransId != 0L) {
output.WriteRawTag(8);
@@ -2884,6 +3289,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (TransId != 0L) {
@@ -2896,6 +3302,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(RollbackTransactionRequest other) {
if (other == null) {
return;
@@ -2907,13 +3314,18 @@ public void MergeFrom(RollbackTransactionRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -2928,10 +3340,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -2946,6 +3363,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class RollbackTransactionResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -2954,19 +3372,23 @@ public sealed partial class RollbackTransactionResponse : pb::IMessage _parser = new pb::MessageParser(() => new RollbackTransactionResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[16]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public RollbackTransactionResponse() {
OnConstruction();
}
@@ -2974,21 +3396,25 @@ public RollbackTransactionResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public RollbackTransactionResponse(RollbackTransactionResponse other) : this() {
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public RollbackTransactionResponse Clone() {
return new RollbackTransactionResponse(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as RollbackTransactionResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(RollbackTransactionResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -3000,6 +3426,7 @@ public bool Equals(RollbackTransactionResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (_unknownFields != null) {
@@ -3009,11 +3436,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -3026,6 +3455,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (_unknownFields != null) {
_unknownFields.WriteTo(ref output);
@@ -3034,6 +3464,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (_unknownFields != null) {
@@ -3043,6 +3474,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(RollbackTransactionResponse other) {
if (other == null) {
return;
@@ -3051,13 +3483,18 @@ public void MergeFrom(RollbackTransactionResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -3068,10 +3505,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -3082,6 +3524,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class QueueMessageRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -3090,19 +3533,23 @@ public sealed partial class QueueMessageRequest : pb::IMessage _parser = new pb::MessageParser(() => new QueueMessageRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[17]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public QueueMessageRequest() {
OnConstruction();
}
@@ -3110,6 +3557,7 @@ public QueueMessageRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public QueueMessageRequest(QueueMessageRequest other) : this() {
transId_ = other.transId_;
queueId_ = other.queueId_;
@@ -3118,6 +3566,7 @@ public QueueMessageRequest(QueueMessageRequest other) : this() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public QueueMessageRequest Clone() {
return new QueueMessageRequest(this);
}
@@ -3129,6 +3578,7 @@ public QueueMessageRequest Clone() {
/// Queue Transaction id. All messages must be added in a transaction.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long TransId {
get { return transId_; }
set {
@@ -3140,6 +3590,7 @@ public long TransId {
public const int QueueIdFieldNumber = 2;
private long queueId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long QueueId {
get { return queueId_; }
set {
@@ -3151,6 +3602,7 @@ public long QueueId {
public const int MessageFieldNumber = 3;
private global::AgQueue.Models.MessageIn message_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public global::AgQueue.Models.MessageIn Message {
get { return message_; }
set {
@@ -3159,11 +3611,13 @@ public long QueueId {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as QueueMessageRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(QueueMessageRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -3178,6 +3632,7 @@ public bool Equals(QueueMessageRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (TransId != 0L) hash ^= TransId.GetHashCode();
@@ -3190,11 +3645,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -3219,6 +3676,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (TransId != 0L) {
output.WriteRawTag(8);
@@ -3239,6 +3697,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (TransId != 0L) {
@@ -3257,6 +3716,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(QueueMessageRequest other) {
if (other == null) {
return;
@@ -3277,13 +3737,18 @@ public void MergeFrom(QueueMessageRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -3309,10 +3774,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -3338,6 +3808,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class MessageIn : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -3346,19 +3817,23 @@ public sealed partial class MessageIn : pb::IMessage
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MessageIn());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[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]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public MessageIn() {
OnConstruction();
}
@@ -3366,6 +3841,7 @@ public MessageIn() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public MessageIn(MessageIn other) : this() {
payload_ = other.payload_;
metaData_ = other.metaData_;
@@ -3378,6 +3854,7 @@ public MessageIn(MessageIn other) : this() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public MessageIn Clone() {
return new MessageIn(this);
}
@@ -3389,6 +3866,7 @@ public MessageIn Clone() {
/// Message object to be serialized.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public pb::ByteString Payload {
get { return payload_; }
set {
@@ -3403,6 +3881,7 @@ public MessageIn Clone() {
/// String of optional data describing the message.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string MetaData {
get { return metaData_; }
set {
@@ -3417,6 +3896,7 @@ public string MetaData {
/// Message priority. Lower the number, the higher the priority.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int Priority {
get { return priority_; }
set {
@@ -3431,6 +3911,7 @@ public int Priority {
/// tries">How many failures before the message will be expired.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int MaxAttempts {
get { return maxAttempts_; }
set {
@@ -3445,6 +3926,7 @@ public int MaxAttempts {
/// Message will expire after this many minutes if not already processed or in a transaction. Zero indicates no expiration.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int ExpiryInMinutes {
get { return expiryInMinutes_; }
set {
@@ -3459,6 +3941,7 @@ public int ExpiryInMinutes {
/// Optional correlation id. ID's are defined by the calling application.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CorrelationId {
get { return correlationId_; }
set {
@@ -3473,6 +3956,7 @@ public int CorrelationId {
/// Optional group string. Defined by calling application.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string GroupName {
get { return groupName_; }
set {
@@ -3481,11 +3965,13 @@ public string GroupName {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as MessageIn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(MessageIn other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -3504,6 +3990,7 @@ public bool Equals(MessageIn other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (Payload.Length != 0) hash ^= Payload.GetHashCode();
@@ -3520,11 +4007,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -3565,6 +4054,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (Payload.Length != 0) {
output.WriteRawTag(18);
@@ -3601,6 +4091,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (Payload.Length != 0) {
@@ -3631,6 +4122,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(MessageIn other) {
if (other == null) {
return;
@@ -3660,13 +4152,18 @@ public void MergeFrom(MessageIn other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -3705,10 +4202,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -3747,6 +4249,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class MessageOut : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -3755,19 +4258,23 @@ public sealed partial class MessageOut : pb::IMessage
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new MessageOut());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[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]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public MessageOut() {
OnConstruction();
}
@@ -3775,6 +4282,7 @@ public MessageOut() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public MessageOut(MessageOut other) : this() {
id_ = other.id_;
queueId_ = other.queueId_;
@@ -3795,6 +4303,7 @@ public MessageOut(MessageOut other) : this() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public MessageOut Clone() {
return new MessageOut(this);
}
@@ -3803,6 +4312,7 @@ public MessageOut Clone() {
public const int IdFieldNumber = 1;
private long id_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long Id {
get { return id_; }
set {
@@ -3817,6 +4327,7 @@ public long Id {
/// The queue id to add the message to.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long QueueId {
get { return queueId_; }
set {
@@ -3831,6 +4342,7 @@ public long QueueId {
/// Message object to be serialized.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public pb::ByteString Payload {
get { return payload_; }
set {
@@ -3845,6 +4357,7 @@ public long QueueId {
/// String of optional data describing the message.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string MetaData {
get { return metaData_; }
set {
@@ -3859,6 +4372,7 @@ public string MetaData {
/// Message priority. Lower the number, the higher the priority.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int Priority {
get { return priority_; }
set {
@@ -3873,6 +4387,7 @@ public int Priority {
/// tries">How many failures before the message will be expired.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int MaxAttempts {
get { return maxAttempts_; }
set {
@@ -3884,6 +4399,7 @@ public int MaxAttempts {
public const int AttemptsFieldNumber = 7;
private int attempts_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int Attempts {
get { return attempts_; }
set {
@@ -3898,6 +4414,7 @@ public int Attempts {
/// Message expire after this DateTime.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long ExpiryDateTime {
get { return expiryDateTime_; }
set {
@@ -3912,6 +4429,7 @@ public long ExpiryDateTime {
/// Optional correlation id. ID's are defined by the calling application.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CorrelationId {
get { return correlationId_; }
set {
@@ -3926,6 +4444,7 @@ public int CorrelationId {
/// Optional group string. Defined by calling application.
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public string GroupName {
get { return groupName_; }
set {
@@ -3940,6 +4459,7 @@ public string GroupName {
/// State
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public global::AgQueue.Models.MessageState MessageState {
get { return messageState_; }
set {
@@ -3951,6 +4471,7 @@ public string GroupName {
public const int AddDateTimeFieldNumber = 12;
private long addDateTime_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long AddDateTime {
get { return addDateTime_; }
set {
@@ -3962,6 +4483,7 @@ public long AddDateTime {
public const int CloseDateTimeFieldNumber = 13;
private long closeDateTime_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long CloseDateTime {
get { return closeDateTime_; }
set {
@@ -3973,6 +4495,7 @@ public long CloseDateTime {
public const int TransIdFieldNumber = 14;
private long transId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long TransId {
get { return transId_; }
set {
@@ -3984,6 +4507,7 @@ public long TransId {
public const int TransActionFieldNumber = 15;
private global::AgQueue.Models.TransactionAction transAction_ = global::AgQueue.Models.TransactionAction.None;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public global::AgQueue.Models.TransactionAction TransAction {
get { return transAction_; }
set {
@@ -3992,11 +4516,13 @@ public long TransId {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as MessageOut);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(MessageOut other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -4023,6 +4549,7 @@ public bool Equals(MessageOut other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (Id != 0L) hash ^= Id.GetHashCode();
@@ -4047,11 +4574,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -4124,6 +4653,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (Id != 0L) {
output.WriteRawTag(8);
@@ -4192,6 +4722,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (Id != 0L) {
@@ -4246,6 +4777,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(MessageOut other) {
if (other == null) {
return;
@@ -4299,13 +4831,18 @@ public void MergeFrom(MessageOut other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -4376,10 +4913,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -4450,6 +4992,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class QueueMessageResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -4458,19 +5001,23 @@ public sealed partial class QueueMessageResponse : pb::IMessage _parser = new pb::MessageParser(() => new QueueMessageResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[20]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public QueueMessageResponse() {
OnConstruction();
}
@@ -4478,6 +5025,7 @@ public QueueMessageResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public QueueMessageResponse(QueueMessageResponse other) : this() {
transId_ = other.transId_;
messageId_ = other.messageId_;
@@ -4485,6 +5033,7 @@ public QueueMessageResponse(QueueMessageResponse other) : this() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public QueueMessageResponse Clone() {
return new QueueMessageResponse(this);
}
@@ -4493,6 +5042,7 @@ public QueueMessageResponse Clone() {
public const int TransIdFieldNumber = 1;
private long transId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long TransId {
get { return transId_; }
set {
@@ -4504,6 +5054,7 @@ public long TransId {
public const int MessageIdFieldNumber = 2;
private long messageId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long MessageId {
get { return messageId_; }
set {
@@ -4512,11 +5063,13 @@ public long MessageId {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as QueueMessageResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(QueueMessageResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -4530,6 +5083,7 @@ public bool Equals(QueueMessageResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (TransId != 0L) hash ^= TransId.GetHashCode();
@@ -4541,11 +5095,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -4566,6 +5122,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (TransId != 0L) {
output.WriteRawTag(8);
@@ -4582,6 +5139,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (TransId != 0L) {
@@ -4597,6 +5155,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(QueueMessageResponse other) {
if (other == null) {
return;
@@ -4611,13 +5170,18 @@ public void MergeFrom(QueueMessageResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -4636,10 +5200,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -4658,6 +5227,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class DequeueMessageRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -4666,19 +5236,23 @@ public sealed partial class DequeueMessageRequest : pb::IMessage _parser = new pb::MessageParser(() => new DequeueMessageRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[21]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DequeueMessageRequest() {
OnConstruction();
}
@@ -4686,6 +5260,7 @@ public DequeueMessageRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DequeueMessageRequest(DequeueMessageRequest other) : this() {
queueId_ = other.queueId_;
transId_ = other.transId_;
@@ -4693,6 +5268,7 @@ public DequeueMessageRequest(DequeueMessageRequest other) : this() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DequeueMessageRequest Clone() {
return new DequeueMessageRequest(this);
}
@@ -4701,6 +5277,7 @@ public DequeueMessageRequest Clone() {
public const int QueueIdFieldNumber = 1;
private long queueId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long QueueId {
get { return queueId_; }
set {
@@ -4718,6 +5295,7 @@ public long QueueId {
///int32 MinumumRequiredMessaages = 4;
///
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long TransId {
get { return transId_; }
set {
@@ -4726,11 +5304,13 @@ public long TransId {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as DequeueMessageRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(DequeueMessageRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -4744,6 +5324,7 @@ public bool Equals(DequeueMessageRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (QueueId != 0L) hash ^= QueueId.GetHashCode();
@@ -4755,11 +5336,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -4780,6 +5363,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (QueueId != 0L) {
output.WriteRawTag(8);
@@ -4796,6 +5380,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (QueueId != 0L) {
@@ -4811,6 +5396,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(DequeueMessageRequest other) {
if (other == null) {
return;
@@ -4825,13 +5411,18 @@ public void MergeFrom(DequeueMessageRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -4850,10 +5441,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -4872,6 +5468,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class DequeueMessageResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -4880,19 +5477,23 @@ public sealed partial class DequeueMessageResponse : pb::IMessage _parser = new pb::MessageParser(() => new DequeueMessageResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[22]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DequeueMessageResponse() {
OnConstruction();
}
@@ -4900,6 +5501,7 @@ public DequeueMessageResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DequeueMessageResponse(DequeueMessageResponse other) : this() {
transId_ = other.transId_;
messageFound_ = other.messageFound_;
@@ -4908,6 +5510,7 @@ public DequeueMessageResponse(DequeueMessageResponse other) : this() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public DequeueMessageResponse Clone() {
return new DequeueMessageResponse(this);
}
@@ -4916,6 +5519,7 @@ public DequeueMessageResponse Clone() {
public const int TransIdFieldNumber = 1;
private long transId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long TransId {
get { return transId_; }
set {
@@ -4927,6 +5531,7 @@ public long TransId {
public const int MessageFoundFieldNumber = 2;
private bool messageFound_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool MessageFound {
get { return messageFound_; }
set {
@@ -4938,6 +5543,7 @@ public bool MessageFound {
public const int MessageFieldNumber = 3;
private global::AgQueue.Models.MessageOut message_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public global::AgQueue.Models.MessageOut Message {
get { return message_; }
set {
@@ -4946,11 +5552,13 @@ public bool MessageFound {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as DequeueMessageResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(DequeueMessageResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -4965,6 +5573,7 @@ public bool Equals(DequeueMessageResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (TransId != 0L) hash ^= TransId.GetHashCode();
@@ -4977,11 +5586,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -5006,6 +5617,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (TransId != 0L) {
output.WriteRawTag(8);
@@ -5026,6 +5638,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (TransId != 0L) {
@@ -5044,6 +5657,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(DequeueMessageResponse other) {
if (other == null) {
return;
@@ -5064,13 +5678,18 @@ public void MergeFrom(DequeueMessageResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -5096,10 +5715,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -5125,6 +5749,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class PeekMessageByQueueRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -5133,19 +5758,23 @@ public sealed partial class PeekMessageByQueueRequest : pb::IMessage _parser = new pb::MessageParser(() => new PeekMessageByQueueRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[23]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByQueueRequest() {
OnConstruction();
}
@@ -5153,12 +5782,14 @@ public PeekMessageByQueueRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByQueueRequest(PeekMessageByQueueRequest other) : this() {
queueId_ = other.queueId_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByQueueRequest Clone() {
return new PeekMessageByQueueRequest(this);
}
@@ -5167,6 +5798,7 @@ public PeekMessageByQueueRequest Clone() {
public const int QueueIdFieldNumber = 1;
private long queueId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long QueueId {
get { return queueId_; }
set {
@@ -5175,11 +5807,13 @@ public long QueueId {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as PeekMessageByQueueRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(PeekMessageByQueueRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -5192,6 +5826,7 @@ public bool Equals(PeekMessageByQueueRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (QueueId != 0L) hash ^= QueueId.GetHashCode();
@@ -5202,11 +5837,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -5223,6 +5860,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (QueueId != 0L) {
output.WriteRawTag(8);
@@ -5235,6 +5873,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (QueueId != 0L) {
@@ -5247,6 +5886,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(PeekMessageByQueueRequest other) {
if (other == null) {
return;
@@ -5258,13 +5898,18 @@ public void MergeFrom(PeekMessageByQueueRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -5279,10 +5924,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -5297,6 +5947,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class PeekMessageByQueueResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -5305,19 +5956,23 @@ public sealed partial class PeekMessageByQueueResponse : pb::IMessage _parser = new pb::MessageParser(() => new PeekMessageByQueueResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[24]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByQueueResponse() {
OnConstruction();
}
@@ -5325,12 +5980,14 @@ public PeekMessageByQueueResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByQueueResponse(PeekMessageByQueueResponse other) : this() {
message_ = other.message_ != null ? other.message_.Clone() : null;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByQueueResponse Clone() {
return new PeekMessageByQueueResponse(this);
}
@@ -5339,6 +5996,7 @@ public PeekMessageByQueueResponse Clone() {
public const int MessageFieldNumber = 1;
private global::AgQueue.Models.MessageOut message_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public global::AgQueue.Models.MessageOut Message {
get { return message_; }
set {
@@ -5347,11 +6005,13 @@ public PeekMessageByQueueResponse Clone() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as PeekMessageByQueueResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(PeekMessageByQueueResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -5364,6 +6024,7 @@ public bool Equals(PeekMessageByQueueResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (message_ != null) hash ^= Message.GetHashCode();
@@ -5374,11 +6035,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -5395,6 +6058,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (message_ != null) {
output.WriteRawTag(10);
@@ -5407,6 +6071,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (message_ != null) {
@@ -5419,6 +6084,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(PeekMessageByQueueResponse other) {
if (other == null) {
return;
@@ -5433,13 +6099,18 @@ public void MergeFrom(PeekMessageByQueueResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -5457,10 +6128,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -5478,6 +6154,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class PeekMessageByIdRequest : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -5486,19 +6163,23 @@ public sealed partial class PeekMessageByIdRequest : pb::IMessage _parser = new pb::MessageParser(() => new PeekMessageByIdRequest());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[25]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByIdRequest() {
OnConstruction();
}
@@ -5506,12 +6187,14 @@ public PeekMessageByIdRequest() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByIdRequest(PeekMessageByIdRequest other) : this() {
messageId_ = other.messageId_;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByIdRequest Clone() {
return new PeekMessageByIdRequest(this);
}
@@ -5520,6 +6203,7 @@ public PeekMessageByIdRequest Clone() {
public const int MessageIdFieldNumber = 1;
private long messageId_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public long MessageId {
get { return messageId_; }
set {
@@ -5528,11 +6212,13 @@ public long MessageId {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as PeekMessageByIdRequest);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(PeekMessageByIdRequest other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -5545,6 +6231,7 @@ public bool Equals(PeekMessageByIdRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (MessageId != 0L) hash ^= MessageId.GetHashCode();
@@ -5555,11 +6242,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -5576,6 +6265,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (MessageId != 0L) {
output.WriteRawTag(8);
@@ -5588,6 +6278,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (MessageId != 0L) {
@@ -5600,6 +6291,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(PeekMessageByIdRequest other) {
if (other == null) {
return;
@@ -5611,13 +6303,18 @@ public void MergeFrom(PeekMessageByIdRequest other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -5632,10 +6329,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
@@ -5650,6 +6352,7 @@ public void MergeFrom(pb::CodedInputStream input) {
}
+ [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")]
public sealed partial class PeekMessageByIdResponse : pb::IMessage
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
, pb::IBufferMessage
@@ -5658,19 +6361,23 @@ public sealed partial class PeekMessageByIdResponse : pb::IMessage _parser = new pb::MessageParser(() => new PeekMessageByIdResponse());
private pb::UnknownFieldSet _unknownFields;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public static pbr::MessageDescriptor Descriptor {
get { return global::AgQueue.Models.AgQueueReflection.Descriptor.MessageTypes[26]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByIdResponse() {
OnConstruction();
}
@@ -5678,12 +6385,14 @@ public PeekMessageByIdResponse() {
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByIdResponse(PeekMessageByIdResponse other) : this() {
message_ = other.message_ != null ? other.message_.Clone() : null;
_unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public PeekMessageByIdResponse Clone() {
return new PeekMessageByIdResponse(this);
}
@@ -5692,6 +6401,7 @@ public PeekMessageByIdResponse Clone() {
public const int MessageFieldNumber = 1;
private global::AgQueue.Models.MessageOut message_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public global::AgQueue.Models.MessageOut Message {
get { return message_; }
set {
@@ -5700,11 +6410,13 @@ public PeekMessageByIdResponse Clone() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override bool Equals(object other) {
return Equals(other as PeekMessageByIdResponse);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public bool Equals(PeekMessageByIdResponse other) {
if (ReferenceEquals(other, null)) {
return false;
@@ -5717,6 +6429,7 @@ public bool Equals(PeekMessageByIdResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override int GetHashCode() {
int hash = 1;
if (message_ != null) hash ^= Message.GetHashCode();
@@ -5727,11 +6440,13 @@ public override int GetHashCode() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
output.WriteRawMessage(this);
@@ -5748,6 +6463,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) {
if (message_ != null) {
output.WriteRawTag(10);
@@ -5760,6 +6476,7 @@ public void WriteTo(pb::CodedOutputStream output) {
#endif
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public int CalculateSize() {
int size = 0;
if (message_ != null) {
@@ -5772,6 +6489,7 @@ public int CalculateSize() {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(PeekMessageByIdResponse other) {
if (other == null) {
return;
@@ -5786,13 +6504,18 @@ public void MergeFrom(PeekMessageByIdResponse other) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
input.ReadRawMessage(this);
#else
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
break;
@@ -5810,10 +6533,15 @@ public void MergeFrom(pb::CodedInputStream input) {
#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
+ [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
- switch(tag) {
+ if ((tag & 7) == 4) {
+ // Abort on any end group tag.
+ return;
+ }
+ switch(tag) {
default:
_unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
break;
diff --git a/AgQueue.Models/AgQueueGrpc.cs b/AgQueue.Models/AgQueueGrpc.cs
index 7e741e5..89f3827 100644
--- a/AgQueue.Models/AgQueueGrpc.cs
+++ b/AgQueue.Models/AgQueueGrpc.cs
@@ -2,7 +2,7 @@
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: AgQueue.proto
//
-#pragma warning disable 0414, 1591
+#pragma warning disable 0414, 1591, 8981, 0612
#region Designer generated code
using grpc = global::Grpc.Core;
@@ -15,6 +15,7 @@ public static partial class QueueApi
{
static readonly string __ServiceName = "greet.QueueApi";
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static void __Helper_SerializeMessage(global::Google.Protobuf.IMessage message, grpc::SerializationContext context)
{
#if !GRPC_DISABLE_PROTOBUF_BUFFER_SERIALIZATION
@@ -29,11 +30,13 @@ static void __Helper_SerializeMessage(global::Google.Protobuf.IMessage message,
context.Complete(global::Google.Protobuf.MessageExtensions.ToByteArray(message));
}
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static class __Helper_MessageCache
{
public static readonly bool IsBufferMessage = global::System.Reflection.IntrospectionExtensions.GetTypeInfo(typeof(global::Google.Protobuf.IBufferMessage)).IsAssignableFrom(typeof(T));
}
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static T __Helper_DeserializeMessage(grpc::DeserializationContext context, global::Google.Protobuf.MessageParser parser) where T : global::Google.Protobuf.IMessage
{
#if !GRPC_DISABLE_PROTOBUF_BUFFER_SERIALIZATION
@@ -45,32 +48,58 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
return parser.ParseFrom(context.PayloadAsNewBuffer());
}
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [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));
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_CreateQueue = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -78,6 +107,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_CreateQueueRequest,
__Marshaller_greet_CreateQueueResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_InitializeStorage = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -85,6 +115,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_InitializeStorageRequest,
__Marshaller_greet_InitializeStorageResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_DeleteQueueById = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -92,6 +123,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_DeleteQueueByIdRequest,
__Marshaller_greet_DeleteQueueByIdResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_DeleteQueueByName = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -99,6 +131,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_DeleteQueueByNameRequest,
__Marshaller_greet_DeleteQueueByNameResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_GetQueueInfoById = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -106,6 +139,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_GetQueueInfoByIdRequest,
__Marshaller_greet_GetQueueInfoResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_GetQueueInfoByName = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -113,6 +147,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_GetQueueInfoByNameRequest,
__Marshaller_greet_GetQueueInfoResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_StartTransaction = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -120,6 +155,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_StartTransactionRequest,
__Marshaller_greet_StartTransactionResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_CommitTransaction = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -127,6 +163,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_CommitTransactionRequest,
__Marshaller_greet_CommitTransactionResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_RollbackTranaction = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -134,6 +171,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_RollbackTransactionRequest,
__Marshaller_greet_RollbackTransactionResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_QueueMessage = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -141,6 +179,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_QueueMessageRequest,
__Marshaller_greet_QueueMessageResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_DequeueMessage = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -148,6 +187,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_DequeueMessageRequest,
__Marshaller_greet_DequeueMessageResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_PeekMessageByQueue = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -155,6 +195,7 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
__Marshaller_greet_PeekMessageByQueueRequest,
__Marshaller_greet_PeekMessageByQueueResponse);
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
static readonly grpc::Method __Method_PeekMessageById = new grpc::Method(
grpc::MethodType.Unary,
__ServiceName,
@@ -172,66 +213,79 @@ static T __Helper_DeserializeMessage(grpc::DeserializationContext context, gl
[grpc::BindServiceMethod(typeof(QueueApi), "BindService")]
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)
{
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)
{
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)
{
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)
{
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)
{
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)
{
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)
{
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)
{
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)
{
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)
{
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)
{
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)
{
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)
{
throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
@@ -244,233 +298,290 @@ public partial class QueueApiClient : grpc::ClientBase
{
/// Creates a new client for QueueApi
/// The channel to use to make remote calls.
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public QueueApiClient(grpc::ChannelBase channel) : base(channel)
{
}
/// Creates a new client for QueueApi that uses a custom CallInvoker.
/// The callInvoker to use to make remote calls.
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public QueueApiClient(grpc::CallInvoker callInvoker) : base(callInvoker)
{
}
/// Protected parameterless constructor to allow creation of test doubles.
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
protected QueueApiClient() : base()
{
}
/// Protected constructor to allow creation of configured clients.
/// The client configuration.
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
protected QueueApiClient(ClientBaseConfiguration configuration) : base(configuration)
{
}
+ [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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
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))
{
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)
{
return CallInvoker.AsyncUnaryCall(__Method_PeekMessageById, null, options, request);
}
/// Creates a new instance of client from given ClientBaseConfiguration.
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
protected override QueueApiClient NewInstance(ClientBaseConfiguration configuration)
{
return new QueueApiClient(configuration);
@@ -479,6 +590,7 @@ protected override QueueApiClient NewInstance(ClientBaseConfiguration configurat
/// Creates service definition that can be registered with a server
/// An object implementing the server-side handling logic.
+ [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
public static grpc::ServerServiceDefinition BindService(QueueApiBase serviceImpl)
{
return grpc::ServerServiceDefinition.CreateBuilder()
@@ -497,10 +609,11 @@ protected override QueueApiClient NewInstance(ClientBaseConfiguration configurat
.AddMethod(__Method_PeekMessageById, serviceImpl.PeekMessageById).Build();
}
- /// Register service method with a service binder with or without implementation. Useful when customizing the service binding logic.
+ /// Register service method with a service binder with or without implementation. Useful when customizing the service binding logic.
/// Note: this method is part of an experimental API that can change or be removed without any prior notice.
/// Service methods will be bound by calling AddMethod on this object.
/// An object implementing the server-side handling logic.
+ [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));
diff --git a/AgQueue.Postgres/AgQueue.Postgres.csproj b/AgQueue.Postgres/AgQueue.Postgres.csproj
index 812c3ba..92cf241 100644
--- a/AgQueue.Postgres/AgQueue.Postgres.csproj
+++ b/AgQueue.Postgres/AgQueue.Postgres.csproj
@@ -7,12 +7,12 @@
- C:\dev\AgQueue\AgQueue.Postgres\AgQueue.Postgres.xml
+ $(OutputPath)$(AssemblyName).xml
-
-
+
+
all
runtime; build; native; contentfiles; analyzers
diff --git a/AgQueue.Server.Common/AgQueue.Server.Common.csproj b/AgQueue.Server.Common/AgQueue.Server.Common.csproj
index 1fe7dca..b91be59 100644
--- a/AgQueue.Server.Common/AgQueue.Server.Common.csproj
+++ b/AgQueue.Server.Common/AgQueue.Server.Common.csproj
@@ -9,16 +9,16 @@
8.0
- C:\dev\AgQueue\AgQueue.Library\AgQueue.Library.xml
+ $(OutputPath)$(AssemblyName).xml
enable
-
-
-
-
-
+
+
+
+
+
all
runtime; build; native; contentfiles; analyzers
diff --git a/AgQueue.Sqlite/AgQueue.Sqlite.csproj b/AgQueue.Sqlite/AgQueue.Sqlite.csproj
index b58804d..606071a 100644
--- a/AgQueue.Sqlite/AgQueue.Sqlite.csproj
+++ b/AgQueue.Sqlite/AgQueue.Sqlite.csproj
@@ -7,18 +7,18 @@
- C:\dev\AgQueue\AgQueue.Sqlite\AgQueue.Sqlite.xml
+ $(OutputPath)$(AssemblyName).xml
-
-
-
+
+
+
all
runtime; build; native; contentfiles; analyzers
-
+
diff --git a/Benchmarks/Benchmarks.csproj b/Benchmarks/Benchmarks.csproj
index ff1c7c1..b16f15c 100644
--- a/Benchmarks/Benchmarks.csproj
+++ b/Benchmarks/Benchmarks.csproj
@@ -6,10 +6,10 @@
-
+
-
+
diff --git a/tests/AgQueue.Integration.Tests/Ag.Integration.Tests.csproj b/tests/AgQueue.Integration.Tests/Ag.Integration.Tests.csproj
index 7724295..1ba8461 100644
--- a/tests/AgQueue.Integration.Tests/Ag.Integration.Tests.csproj
+++ b/tests/AgQueue.Integration.Tests/Ag.Integration.Tests.csproj
@@ -10,13 +10,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
diff --git a/tests/AgQueue.Library.Tests/AgQueue.Library.Tests.csproj b/tests/AgQueue.Library.Tests/AgQueue.Library.Tests.csproj
index 0de2834..0176f80 100644
--- a/tests/AgQueue.Library.Tests/AgQueue.Library.Tests.csproj
+++ b/tests/AgQueue.Library.Tests/AgQueue.Library.Tests.csproj
@@ -13,10 +13,10 @@
-
-
-
-
+
+
+
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive