public NetworkStatsEntity(HttpEntity orig, String ua, int uid, long startTx, long startRx, long responseLatency, long processingStartTime)
super(orig);
this.mUa = ua;
this.mUid = uid;
this.mStartTx = startTx;
this.mStartRx = startRx;
this.mResponseLatency = responseLatency;
this.mProcessingStartTime = processingStartTime;
|