private SendToAll SendToAllToProto(Distributed.SendToAll sendToAll)
 {
     return(SendToAll.CreateBuilder()
            .SetPath(sendToAll.Path)
            .SetAllButSelf(sendToAll.ExcludeSelf)
            .SetPayload(PayloadToProto(sendToAll.Message))
            .Build());
 }