|
Polyphase Game Engine
|
Functions | |
| void | Initialize () |
| void | Shutdown () |
| void | Tick () |
| bool | IsAvailable () |
| const char * | GetMissingDependencyMessage () |
| HttpHandle | Send (HttpRequest req, HttpResponseCallback cb) |
| HttpHandle | Get (const std::string &url, HttpResponseCallback cb) |
| HttpHandle | Post (const std::string &url, std::vector< uint8_t > body, HttpResponseCallback cb) |
| HttpHandle | Put (const std::string &url, std::vector< uint8_t > body, HttpResponseCallback cb) |
| HttpHandle | Patch (const std::string &url, std::vector< uint8_t > body, HttpResponseCallback cb) |
| HttpHandle | Delete (const std::string &url, HttpResponseCallback cb) |
| HttpHandle | PostString (const std::string &url, const std::string &body, HttpResponseCallback cb) |
| HttpResponse | SendSync (HttpRequest req) |
| POLYPHASE_API HttpHandle Http::Delete | ( | const std::string & | url, |
| HttpResponseCallback | cb | ||
| ) |
| POLYPHASE_API HttpHandle Http::Get | ( | const std::string & | url, |
| HttpResponseCallback | cb | ||
| ) |
| POLYPHASE_API const char * Http::GetMissingDependencyMessage | ( | ) |
| POLYPHASE_API void Http::Initialize | ( | ) |
| POLYPHASE_API bool Http::IsAvailable | ( | ) |
| POLYPHASE_API HttpHandle Http::Patch | ( | const std::string & | url, |
| std::vector< uint8_t > | body, | ||
| HttpResponseCallback | cb | ||
| ) |
| POLYPHASE_API HttpHandle Http::Post | ( | const std::string & | url, |
| std::vector< uint8_t > | body, | ||
| HttpResponseCallback | cb | ||
| ) |
| POLYPHASE_API HttpHandle Http::PostString | ( | const std::string & | url, |
| const std::string & | body, | ||
| HttpResponseCallback | cb | ||
| ) |
| POLYPHASE_API HttpHandle Http::Put | ( | const std::string & | url, |
| std::vector< uint8_t > | body, | ||
| HttpResponseCallback | cb | ||
| ) |
| POLYPHASE_API HttpHandle Http::Send | ( | HttpRequest | req, |
| HttpResponseCallback | cb | ||
| ) |
| POLYPHASE_API HttpResponse Http::SendSync | ( | HttpRequest | req | ) |
| POLYPHASE_API void Http::Shutdown | ( | ) |
| POLYPHASE_API void Http::Tick | ( | ) |