change maintainer email, redoc

This commit is contained in:
Hong Ooi 2020-10-16 02:21:01 +11:00
Родитель e9034506e2
Коммит 89ae7ec0e1
4 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -23,4 +23,4 @@ Suggests:
rmarkdown rmarkdown
VignetteBuilder: knitr VignetteBuilder: knitr
Roxygen: list(markdown=TRUE) Roxygen: list(markdown=TRUE)
RoxygenNote: 7.1.0 RoxygenNote: 7.1.1

Просмотреть файл

@ -147,6 +147,9 @@ Clears (deletes) all messages in this storage queue.
\if{html}{\out{<div class="r">}}\preformatted{StorageQueue$clear()}\if{html}{\out{</div>}} \if{html}{\out{<div class="r">}}\preformatted{StorageQueue$clear()}\if{html}{\out{</div>}}
} }
\subsection{Returns}{
The queue object, invisibly.
}
} }
\if{html}{\out{<hr>}} \if{html}{\out{<hr>}}
\if{html}{\out{<a id="method-get_metadata"></a>}} \if{html}{\out{<a id="method-get_metadata"></a>}}

Просмотреть файл

@ -17,7 +17,7 @@ queue_endpoint(
\item{key}{The access key for the storage account.} \item{key}{The access key for the storage account.}
\item{token}{An Azure Active Directory (AAD) authentication token. This can be either a string, or an object of class AzureToken created by \link[AzureRMR:get_azure_token]{AzureRMR::get_azure_token}. The latter is the recommended way of doing it, as it allows for automatic refreshing of expired tokens.} \item{token}{An Azure Active Directory (AAD) authentication token. This can be either a string, or an object of class AzureToken created by \link[AzureRMR:reexports]{AzureRMR::get_azure_token}. The latter is the recommended way of doing it, as it allows for automatic refreshing of expired tokens.}
\item{sas}{A shared access signature (SAS) for the account.} \item{sas}{A shared access signature (SAS) for the account.}
@ -48,5 +48,5 @@ queue_endpoint("https://mystorage.queue.core.windows.net/", key="access_key")
} }
} }
\seealso{ \seealso{
\code{\link[AzureStor:storage_endpoint]{AzureStor::storage_endpoint}}, \code{\link[AzureStor:blob_endpoint]{AzureStor::blob_endpoint}}, \code{\link{storage_queue}} \code{\link[AzureStor:storage_endpoint]{AzureStor::storage_endpoint}}, \code{\link[AzureStor:storage_endpoint]{AzureStor::blob_endpoint}}, \code{\link{storage_queue}}
} }

Просмотреть файл

@ -10,7 +10,7 @@ vignette: >
## Azure queue storage ## Azure queue storage
[Azure queue storage](https://azure.microsoft.com/services/storage/queues/) is a service for storing large numbers of messages that can be accessed from anywhere in the world via authenticated calls using HTTP or HTTPS. A single queue message can be up to 64 KB in size, and a queue can contain millions of messages, up to the total capacity limit of a storage account. Queue storage is often used to create a backlog of work to process asynchronously. [Azure queue storage](https://azure.microsoft.com/en-us/services/storage/queues/) is a service for storing large numbers of messages that can be accessed from anywhere in the world via authenticated calls using HTTP or HTTPS. A single queue message can be up to 64 KB in size, and a queue can contain millions of messages, up to the total capacity limit of a storage account. Queue storage is often used to create a backlog of work to process asynchronously.
AzureQstor is an R interface to queue storage, building on the functionality provided by the [AzureStor](https://github.com/Azure/AzureStor) package. You can easily create and delete queues, and read and write messages to queues. AzureQstor is an R interface to queue storage, building on the functionality provided by the [AzureStor](https://github.com/Azure/AzureStor) package. You can easily create and delete queues, and read and write messages to queues.