-------------------------------------------------------------------------------
| 109 | |
| 110 | //------------------------------------------------------------------------------- |
| 111 | emscripten::val vtkRemoteSession::GetBlob(const std::string& hash) |
| 112 | { |
| 113 | std::size_t length; |
| 114 | auto* data = vtkSessionGetBlob(this->Session, hash.c_str(), &length); |
| 115 | val jsArray = Uint8Array.new_(typed_memory_view(length, data)); |
| 116 | return jsArray; |
| 117 | } |
| 118 | |
| 119 | //------------------------------------------------------------------------------- |
| 120 | emscripten::val vtkRemoteSession::Invoke( |
nothing calls this directly
no test coverage detected