Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x | // Copyright (c) ZeroC, Inc. // slice2js version 3.8.0-alpha.0 // <auto-generated>Generated from Slice file 'Metrics.ice'.</auto-generated> /* eslint-disable */ /* jshint ignore: start */ import * as Ice_DefaultSliceLoader from "../Ice/DefaultSliceLoader.js"; import * as Ice_Object from "../Ice/Object.js"; import * as Ice_StreamHelpers from "../Ice/StreamHelpers.js"; import * as Ice_TypeRegistry from "../Ice/TypeRegistry.js"; import * as Ice_Value from "../Ice/Value.js"; const Ice = { ...Ice_DefaultSliceLoader, ...Ice_Object, ...Ice_StreamHelpers, ...Ice_TypeRegistry, ...Ice_Value, }; import { IceMX as IceMX____Ice_Metrics, } from "../Ice/Metrics.js" const IceMX = { ...IceMX____Ice_Metrics, }; export { IceMX }; /** * Provides information about one or more IceStorm topics. */ IceMX.TopicMetrics = class extends IceMX.Metrics { constructor(id, total, current, totalLifetime, failures, published = 0n, forwarded = 0n) { super(id, total, current, totalLifetime, failures); this.published = published; this.forwarded = forwarded; } _iceWriteMemberImpl(ostr) { ostr.writeLong(this.published); ostr.writeLong(this.forwarded); } _iceReadMemberImpl(istr) { this.published = istr.readLong(); this.forwarded = istr.readLong(); } }; Ice.defineClass(IceMX.TopicMetrics, "::IceMX::TopicMetrics"); Ice.TypeRegistry.declareValueType("IceMX.TopicMetrics", IceMX.TopicMetrics); /** * Provides information about IceStorm subscribers. */ IceMX.SubscriberMetrics = class extends IceMX.Metrics { constructor(id, total, current, totalLifetime, failures, queued = 0, outstanding = 0, delivered = 0n) { super(id, total, current, totalLifetime, failures); this.queued = queued; this.outstanding = outstanding; this.delivered = delivered; } _iceWriteMemberImpl(ostr) { ostr.writeInt(this.queued); ostr.writeInt(this.outstanding); ostr.writeLong(this.delivered); } _iceReadMemberImpl(istr) { this.queued = istr.readInt(); this.outstanding = istr.readInt(); this.delivered = istr.readLong(); } }; Ice.defineClass(IceMX.SubscriberMetrics, "::IceMX::SubscriberMetrics"); Ice.TypeRegistry.declareValueType("IceMX.SubscriberMetrics", IceMX.SubscriberMetrics); |