来自roUrlTransfer 对象的 AsyncPostFromString 方法生成超时为 30 秒的 CURL 请求。
即
port = CreateObject ("roMessagePort")
ut = CreateObject ("roUrlTransfer")
ut.setMessagePort(port)
ut.AsyncPostFromString(data)
有谁知道是否有任何方法可以使用Roku SDK更改CURL超时的默认值?
我不这么认为 - 或者这样的选项会在 https://sdkdocs.roku.com/display/sdkdoc/ifUrlTransfer 的某个地方提到 - 就像有一样用于设置最低传输速率的调用。
但是尝试在Roku的dev.forum http://forums.roku.com/viewforum.php?f=34 中提出这个问题 - 他们可能会添加该功能。
无法更改请求的默认超时。但是,在管理异步请求处理程序中的超时时,可以手动执行此操作。大多数应用程序应该使用异步请求,因此无论如何您都会执行类似的检查。此外,请务必在roUrlTransfer
上拨打asyncCancel()
以清理请求。
' given a url that will timeout
url = "http://www.mocky.io/v2/5a75d6902e000068006ab21a?mocky-delay=1000ms"
' and a timeout in ms
timeout = 100
' create a roUrlTransfer for the request
urlTransfer = CreateObject("roUrlTransfer")
urlTransfer.setUrl(url)
port = CreateObject("roMessagePort")
urlTransfer.setMessagePort(port)
' request the URL
if urlTransfer.asyncGetToString()
event = wait(timeout, port)
if type(event) = "roUrlEvent"
print "urlTransfer success"
else if event <> invalid
print "event emitted: " + type(event)
else
print "urlTransfer timed out"
urlTransfer.asyncCancel()
' alternatively: measure the request time against timeout using roTimeSpan
end if
end if
如代码中所述,如果要在等待循环中处理其他请求(在等待超时与请求超时不同的情况下),则需要使用 roTimeSpan
测量超时。