Documentation
¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type Keeper
- func (k Keeper) Aggregator(c context.Context, req *types.QueryGetAggregatorRequest) (*types.QueryGetAggregatorResponse, error)
- func (k Keeper) Dso(c context.Context, req *types.QueryGetDsoRequest) (*types.QueryGetDsoResponse, error)
- func (k Keeper) GetAggregator(ctx sdk.Context) (val types.Aggregator, found bool)
- func (k Keeper) GetAllKpi(ctx sdk.Context) (list []types.Kpi)
- func (k Keeper) GetAllKpiMeasure(ctx sdk.Context) (list []types.KpiMeasure)
- func (k Keeper) GetAllLem(ctx sdk.Context) (list []types.Lem)
- func (k Keeper) GetAllLemMeasure(ctx sdk.Context) (list []types.LemMeasure)
- func (k Keeper) GetAllPlayer(ctx sdk.Context) (list []types.Player)
- func (k Keeper) GetAllSla(ctx sdk.Context) (list []types.Sla)
- func (k Keeper) GetDso(ctx sdk.Context) (val types.Dso, found bool)
- func (k Keeper) GetKpi(ctx sdk.Context, index string) (val types.Kpi, found bool)
- func (k Keeper) GetKpiMeasure(ctx sdk.Context, index string) (val types.KpiMeasure, found bool)
- func (k Keeper) GetLem(ctx sdk.Context, index string) (val types.Lem, found bool)
- func (k Keeper) GetLemMeasure(ctx sdk.Context, index string) (val types.LemMeasure, found bool)
- func (k Keeper) GetPlayer(ctx sdk.Context, index string) (val types.Player, found bool)
- func (k Keeper) GetSla(ctx sdk.Context, index string) (val types.Sla, found bool)
- func (k Keeper) Kpi(c context.Context, req *types.QueryGetKpiRequest) (*types.QueryGetKpiResponse, error)
- func (k Keeper) KpiAll(c context.Context, req *types.QueryAllKpiRequest) (*types.QueryAllKpiResponse, error)
- func (k Keeper) KpiMeasure(c context.Context, req *types.QueryGetKpiMeasureRequest) (*types.QueryGetKpiMeasureResponse, error)
- func (k Keeper) KpiMeasureAll(c context.Context, req *types.QueryAllKpiMeasureRequest) (*types.QueryAllKpiMeasureResponse, error)
- func (k Keeper) Lem(c context.Context, req *types.QueryGetLemRequest) (*types.QueryGetLemResponse, error)
- func (k Keeper) LemAll(c context.Context, req *types.QueryAllLemRequest) (*types.QueryAllLemResponse, error)
- func (k Keeper) LemMeasure(c context.Context, req *types.QueryGetLemMeasureRequest) (*types.QueryGetLemMeasureResponse, error)
- func (k Keeper) LemMeasureAll(c context.Context, req *types.QueryAllLemMeasureRequest) (*types.QueryAllLemMeasureResponse, error)
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) Player(c context.Context, req *types.QueryGetPlayerRequest) (*types.QueryGetPlayerResponse, error)
- func (k Keeper) PlayerAll(c context.Context, req *types.QueryAllPlayerRequest) (*types.QueryAllPlayerResponse, error)
- func (k Keeper) RemoveAggregator(ctx sdk.Context)
- func (k Keeper) RemoveDso(ctx sdk.Context)
- func (k Keeper) RemoveKpi(ctx sdk.Context, index string)
- func (k Keeper) RemoveKpiMeasure(ctx sdk.Context, index string)
- func (k Keeper) RemoveLem(ctx sdk.Context, index string)
- func (k Keeper) RemoveLemMeasure(ctx sdk.Context, index string)
- func (k Keeper) RemovePlayer(ctx sdk.Context, index string)
- func (k Keeper) RemoveSla(ctx sdk.Context, index string)
- func (k Keeper) SetAggregator(ctx sdk.Context, aggregator types.Aggregator)
- func (k Keeper) SetDso(ctx sdk.Context, dso types.Dso)
- func (k Keeper) SetKpi(ctx sdk.Context, kpi types.Kpi)
- func (k Keeper) SetKpiMeasure(ctx sdk.Context, kpiMeasure types.KpiMeasure)
- func (k Keeper) SetLem(ctx sdk.Context, lem types.Lem)
- func (k Keeper) SetLemMeasure(ctx sdk.Context, lemMeasure types.LemMeasure)
- func (k Keeper) SetPlayer(ctx sdk.Context, player types.Player)
- func (k Keeper) SetSla(ctx sdk.Context, sla types.Sla)
- func (k Keeper) Sla(c context.Context, req *types.QueryGetSlaRequest) (*types.QueryGetSlaResponse, error)
- func (k Keeper) SlaAll(c context.Context, req *types.QueryAllSlaRequest) (*types.QueryAllSlaResponse, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.
Types ¶
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
func (Keeper) Aggregator ¶
func (k Keeper) Aggregator(c context.Context, req *types.QueryGetAggregatorRequest) (*types.QueryGetAggregatorResponse, error)
func (Keeper) Dso ¶
func (k Keeper) Dso(c context.Context, req *types.QueryGetDsoRequest) (*types.QueryGetDsoResponse, error)
func (Keeper) GetAggregator ¶
GetAggregator returns aggregator
func (Keeper) GetAllKpiMeasure ¶
func (k Keeper) GetAllKpiMeasure(ctx sdk.Context) (list []types.KpiMeasure)
GetAllKpiMeasure returns all kpiMeasure
func (Keeper) GetAllLemMeasure ¶
func (k Keeper) GetAllLemMeasure(ctx sdk.Context) (list []types.LemMeasure)
GetAllLemMeasure returns all lemMeasure
func (Keeper) GetAllPlayer ¶
GetAllPlayer returns all player
func (Keeper) GetKpiMeasure ¶
GetKpiMeasure returns a kpiMeasure from its index
func (Keeper) GetLemMeasure ¶
GetLemMeasure returns a lemMeasure from its index
func (Keeper) Kpi ¶
func (k Keeper) Kpi(c context.Context, req *types.QueryGetKpiRequest) (*types.QueryGetKpiResponse, error)
func (Keeper) KpiAll ¶
func (k Keeper) KpiAll(c context.Context, req *types.QueryAllKpiRequest) (*types.QueryAllKpiResponse, error)
func (Keeper) KpiMeasure ¶
func (k Keeper) KpiMeasure(c context.Context, req *types.QueryGetKpiMeasureRequest) (*types.QueryGetKpiMeasureResponse, error)
func (Keeper) KpiMeasureAll ¶
func (k Keeper) KpiMeasureAll(c context.Context, req *types.QueryAllKpiMeasureRequest) (*types.QueryAllKpiMeasureResponse, error)
func (Keeper) Lem ¶
func (k Keeper) Lem(c context.Context, req *types.QueryGetLemRequest) (*types.QueryGetLemResponse, error)
func (Keeper) LemAll ¶
func (k Keeper) LemAll(c context.Context, req *types.QueryAllLemRequest) (*types.QueryAllLemResponse, error)
func (Keeper) LemMeasure ¶
func (k Keeper) LemMeasure(c context.Context, req *types.QueryGetLemMeasureRequest) (*types.QueryGetLemMeasureResponse, error)
func (Keeper) LemMeasureAll ¶
func (k Keeper) LemMeasureAll(c context.Context, req *types.QueryAllLemMeasureRequest) (*types.QueryAllLemMeasureResponse, error)
func (Keeper) Player ¶
func (k Keeper) Player(c context.Context, req *types.QueryGetPlayerRequest) (*types.QueryGetPlayerResponse, error)
func (Keeper) PlayerAll ¶
func (k Keeper) PlayerAll(c context.Context, req *types.QueryAllPlayerRequest) (*types.QueryAllPlayerResponse, error)
func (Keeper) RemoveAggregator ¶
RemoveAggregator removes aggregator from the store
func (Keeper) RemoveKpiMeasure ¶
RemoveKpiMeasure removes a kpiMeasure from the store
func (Keeper) RemoveLemMeasure ¶
RemoveLemMeasure removes a lemMeasure from the store
func (Keeper) RemovePlayer ¶
RemovePlayer removes a player from the store
func (Keeper) SetAggregator ¶
func (k Keeper) SetAggregator(ctx sdk.Context, aggregator types.Aggregator)
SetAggregator set aggregator in the store
func (Keeper) SetKpiMeasure ¶
func (k Keeper) SetKpiMeasure(ctx sdk.Context, kpiMeasure types.KpiMeasure)
SetKpiMeasure set a specific kpiMeasure in the store from its index
func (Keeper) SetLemMeasure ¶
func (k Keeper) SetLemMeasure(ctx sdk.Context, lemMeasure types.LemMeasure)
SetLemMeasure set a specific lemMeasure in the store from its index
func (Keeper) Sla ¶
func (k Keeper) Sla(c context.Context, req *types.QueryGetSlaRequest) (*types.QueryGetSlaResponse, error)
func (Keeper) SlaAll ¶
func (k Keeper) SlaAll(c context.Context, req *types.QueryAllSlaRequest) (*types.QueryAllSlaResponse, error)
Source Files
¶
- aggregator.go
- dso.go
- grpc_query.go
- grpc_query_aggregator.go
- grpc_query_dso.go
- grpc_query_kpi.go
- grpc_query_kpi_measure.go
- grpc_query_lem.go
- grpc_query_lem_measure.go
- grpc_query_player.go
- grpc_query_sla.go
- keeper.go
- kpi.go
- kpi_measure.go
- lem.go
- lem_measure.go
- msg_server.go
- msg_server_aggregator.go
- msg_server_dso.go
- msg_server_kpi.go
- msg_server_kpi_measure.go
- msg_server_lem.go
- msg_server_lem_measure.go
- msg_server_player.go
- msg_server_sla.go
- player.go
- sla.go