简体   繁体   English

Google App Engine套接字是否支持iOS作为客户端?

[英]Is Google App Engine sockets support iOS as client?

According to the documentation of Google App Engine in this URL https://cloud.google.com/appengine/docs/java/sockets/ It said: 根据Google App Engine在此URL中的文档https://cloud.google.com/appengine/docs/java/sockets/表示:

Sockets are only available for paid apps, and traffic from sockets is billed as outgoing bandwidth. 套接字仅适用于付费应用,套接字的流量记为传出带宽。

My questions is that, Is this paragraph includes iOS Apps too? 我的问题是,此段也包括iOS应用吗? If Yes, what does that mean? 如果是,那是什么意思?

Google App Engine is simply a web host. Google App Engine只是一个虚拟主机。 The code you deploy there doesn't run on any devices- it runs in the cloud and clients can talk to it. 您在那里部署的代码不会在任何设备上运行,而是在云中运行,客户端可以与之对话。 Whatever you deploy there typically offers up content over HTTP, which any type of client can understand. 无论您在那里部署什么,通常都会通过HTTP提供内容,任何类型的客户端都可以理解。

That paragraph is talking about billing for your web application , that is, the code deployed on your Google App Engine instance. 该段讨论的是为您的Web应用程序计费,即在您的Google App Engine实例上部署的代码。

Thus to serve up content using sockets, you need to have a paid Google App Engine instance. 因此,要使用套接字提供内容,您需要有一个付费的Google App Engine实例。 "Apps" does not refer to the client applications. “应用程序”不引用客户端应用程序。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM