Azure / azure-storage-android

Microsoft Azure Storage Library for Android
Apache License 2.0
81 stars 47 forks source link

How to cancel the upload operation if its take too long too make connection due to slow internet ? #46

Closed coderbhupendra closed 7 years ago

coderbhupendra commented 7 years ago

I used this document to upload images :Blob uploading But when my internet is too slow. It keeps on trying to connect. Is there any way to set timeout exception while making a connection to a container.

jofri-msft commented 7 years ago

Hi @coderbhupendra, there are two options for timeouts. MaximumExecutionTime and TimeoutInterval – the former is the total time across all retries, the latter is passed to the service as the server timeout for each request. Please take a look at https://github.com/Azure/azure-storage-java/issues/78 for more information

coderbhupendra commented 7 years ago

@jofriedm-msft thanks for the help. And sorry for late reply.