MCPcopy Create free account
hub / github.com/OpenArkStudio/ARK / SendSyncMsg

Method SendSyncMsg

src/plugin/kernel/src/AFCKernelModule.cpp:1156–1167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1154}
1155
1156int AFCKernelModule::SendSyncMsg(const AFGUID& self, const ArkDataMask mask_value, const google::protobuf::Message& msg)
1157{
1158 auto iter = sync_functors.find(mask_value);
1159 if (iter == sync_functors.end())
1160 {
1161 return -1;
1162 }
1163
1164 iter->second(self, msg);
1165
1166 return 0;
1167}
1168
1169int AFCKernelModule::SendToView(const AFGUID& self, const google::protobuf::Message& msg)
1170{

Callers

nothing calls this directly

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected