| 1807 | Dictionary<NetworkRpcName, NetworkRpcInfo> NetworkRpcInfo::RPCsTable; |
| 1808 | |
| 1809 | NetworkStream* NetworkReplicator::BeginInvokeRPC() |
| 1810 | { |
| 1811 | PROFILE_MEM(Networking); |
| 1812 | if (CachedWriteStream == nullptr) |
| 1813 | CachedWriteStream = New<NetworkStream>(); |
| 1814 | CachedWriteStream->Initialize(); |
| 1815 | CachedWriteStream->SenderId = NetworkManager::LocalClientId; |
| 1816 | Scripting::ObjectsLookupIdMapping.Set(&IdsRemappingTable); |
| 1817 | return CachedWriteStream; |
| 1818 | } |
| 1819 | |
| 1820 | bool NetworkReplicator::EndInvokeRPC(ScriptingObject* obj, const ScriptingTypeHandle& type, const StringAnsiView& name, NetworkStream* argsStream, Span<uint32> targetIds) |
| 1821 | { |
nothing calls this directly
no test coverage detected