Пример #1
0
 public CountMinSketchAggState(CountMinSketchState state, CountMinSketchAgent agent)
 {
     _state     = state;
     _agent     = agent;
     _add       = new CountMinSketchAgentContextAdd(state);
     _estimate  = new CountMinSketchAgentContextEstimate(state);
     _fromBytes = new CountMinSketchAgentContextFromBytes(state);
 }
Пример #2
0
            public long? Estimate(CountMinSketchAgentContextEstimate ctx)
            {
                if (ctx.Value == null) {
                    return null;
                }

                var value = (byte[]) ctx.Value;
                return ctx.State.Frequency(value);
            }
Пример #3
0
 public CountMinSketchAggState(
     CountMinSketchState state,
     CountMinSketchAgent agent)
 {
     this.state = state;
     this.agent = agent;
     add = new CountMinSketchAgentContextAdd(state);
     estimate = new CountMinSketchAgentContextEstimate(state);
     fromBytes = new CountMinSketchAgentContextFromBytes(state);
 }