Documentation ¶
Index ¶
Constants ¶
View Source
const ( // Map1BeginnerPool is an index. Map1BeginnerPool = "map1beginner" // Map1AdvancedPool is an index. Map1AdvancedPool = "map1advanced" // Map2BeginnerPool is an index. Map2BeginnerPool = "map2beginner" // Map2AdvancedPool is an index. Map2AdvancedPool = "map2advanced" // SkillAttribute is an index. SkillAttribute = "skill" // Map1Attribute is an index. Map1Attribute = "map1" // Map2Attribute is an index. Map2Attribute = "map2" // LevelIndex is an index LevelIndex = "level" // DefenseIndex is an index DefenseIndex = "defense" // BoolIndex is an index used to test BoolEqualsFilter BoolIndex = "bool" // StringIndex is an index used to test StringEqualsFilter StringIndex = "string" )
Variables ¶
View Source
var ( // Indices covers all ticketIndices that will be used in the e2e test // Please update #L394 in the Makefile if you need to add new indices to the e2e tests. // TODO: Unify these indices Indices = []string{SkillAttribute, Map1Attribute, Map2Attribute, LevelIndex, DefenseIndex, BoolIndex, StringIndex} )
Functions ¶
Types ¶
type OM ¶
type OM interface { // MustFrontendGRPC returns a gRPC client to frontend server. MustFrontendGRPC() pb.FrontendClient // MustBackendGRPC returns a gRPC client to backend server. MustBackendGRPC() pb.BackendClient // MustMmLogicGRPC returns a gRPC client to mmlogic server. MustMmLogicGRPC() pb.MmLogicClient // HealthCheck probes the cluster for readiness. HealthCheck() error // MustMmfConfigGRPC returns a grpc match function config for backend server. MustMmfConfigGRPC() *pb.FunctionConfig // MustMmfConfigHTTP returns a http match function config for backend server. MustMmfConfigHTTP() *pb.FunctionConfig // Context provides a context to call remote methods. Context() context.Context // contains filtered or unexported methods }
OM is the interface for communicating with Open Match.
Click to show internal directories.
Click to hide internal directories.