Пример #1
0
        public virtual void computeDoubleValue(String name, double doubleValue, EloixClient.IndexServer.health.HealthCheckValueOperation operation)
        {
            BSyncResult <Object> asyncResult = new BSyncResult <Object>();

            computeDoubleValue(name, doubleValue, operation, BAsyncResultHelper.ToDelegate <Object>(asyncResult));
            asyncResult.GetResult();
        }
Пример #2
0
        public virtual void computeDoubleValue(String name, double doubleValue, EloixClient.IndexServer.health.HealthCheckValueOperation operation, BAsyncResult <Object> asyncResult)
        {
            BRequest_HealthCheckService_computeDoubleValue req = new BRequest_HealthCheckService_computeDoubleValue();

            req.nameValue        = name;
            req.doubleValueValue = doubleValue;
            req.operationValue   = operation;
            transport.sendMethod(req, asyncResult);
        }
Пример #3
0
 public HealthCheckInfo(String @name, String @stringValue, double @doubleValue, long @sampleSize, EloixClient.IndexServer.health.HealthCheckValueOperation @operation)
 {
     this.nameValue        = @name;
     this.stringValueValue = @stringValue;
     this.doubleValueValue = @doubleValue;
     this.sampleSizeValue  = @sampleSize;
     this.operationValue   = @operation;
 }