func deltaToProto(delta graph.Delta) proto.LogDelta { var newd proto.LogDelta newd.ID = uint64(delta.ID.Int()) newd.Action = int32(delta.Action) newd.Timestamp = delta.Timestamp.UnixNano() newd.Quad = proto.MakeQuad(delta.Quad) return newd }
func deltaToProto(delta graph.Delta) proto.LogDelta { var newd proto.LogDelta newd.ID = uint64(delta.ID.Int()) newd.Action = int32(delta.Action) newd.Timestamp = delta.Timestamp.UnixNano() newd.Quad = &proto.Quad{ Subject: delta.Quad.Subject, Predicate: delta.Quad.Predicate, Object: delta.Quad.Object, Label: delta.Quad.Label, } return newd }