For IntelliJ IDEA,
Android Studio or Eclipse



public void read(DataInputX input) throws IOException { this.objType = input.readText(); this.checkInterval = input.readLong(); this.title = input.readText(); this.level = input.readByte(); this.condition = input.readText(); this.message = input.readText(); this.lastCheckTime = input.readLong(); this.enabled = input.readBoolean(); }
public Value read(DataInputX din) throws IOException { this.value = din.readBoolean(); return this; }
private void readInternal(DataInputX d) throws IOException { this.startTime = d.readLong(); this.objHash = d.readInt(); this.batchJobId = d.readText(); this.args = d.readText(); this.pID = d.readInt(); this.elapsedTime = d.readLong(); this.threadCnt = d.readInt(); this.cpuTime = d.readLong(); this.gcTime = d.readLong(); this.gcCount = d.readLong(); this.sqlTotalCnt = d.readInt(); this.sqlTotalTime = d.readLong(); this.sqlTotalRows = d.readLong(); this.sqlTotalRuns = d.readLong(); this.isStack = d.readBoolean(); this.objName = d.readText(); this.objType = d.readText(); this.position = d.readLong(); }
public Pack read(DataInputX din) throws IOException { this.objType = din.readText(); this.objHash = (int) din.readDecimal(); this.objName = din.readText(); this.address = din.readText(); this.version = din.readText(); this.alive = din.readBoolean(); this.wakeup = din.readDecimal(); this.tags = (MapValue) din.readValue(); return this; }
public Pack read(DataInputX din) throws IOException { DataInputX d = new DataInputX(din.readBlob()); readInternal(d); if(this.sqlTotalCnt > 0){ this.sqlStats = new ArrayList<MapValue>((int)this.sqlTotalCnt); MapValue value; for(int i=0; i<this.sqlTotalCnt; i++){ value = new MapValue(); this.sqlStats.add(value); value.put("hashValue",(long)d.readInt()); value.put("runs", (long)d.readInt()); value.put("startTime", d.readLong()); value.put("endTime", d.readLong()); value.put("totalTime", d.readLong()); value.put("minTime", d.readLong()); value.put("maxTime", d.readLong()); value.put("processedRows", d.readLong()); value.put("rowed", new BooleanValue(d.readBoolean())); } this.uniqueSqls = new HashMap<Integer, String>(this.sqlTotalCnt); for(int i=0; i<this.sqlTotalCnt; i++){ this.uniqueSqls.put(d.readInt(), d.readText()); } } return this; } }
r.deleted = in.readBoolean(); r.prevPos = in.readLong5(); r.timeKey = in.readShortBytes(); this.synchronized { this.raf.seek(pos); return new DataInputX(this.raf).readBoolean();
public void read(DataInputX input) throws IOException { this.objType = input.readText(); this.checkInterval = input.readLong(); this.title = input.readText(); this.level = input.readByte(); this.condition = input.readText(); this.message = input.readText(); this.lastCheckTime = input.readLong(); this.enabled = input.readBoolean(); }
public Pack read(DataInputX din) throws IOException { this.objType = din.readText(); this.objHash = (int) din.readDecimal(); this.objName = din.readText(); this.address = din.readText(); this.version = din.readText(); this.alive = din.readBoolean(); this.wakeup = din.readDecimal(); this.tags = (MapValue) din.readValue(); return this; }
public Value read(DataInputX din) throws IOException { this.value = din.readBoolean(); return this; }
private void readInternal(DataInputX d) throws IOException { this.startTime = d.readLong(); this.objHash = d.readInt(); this.batchJobId = d.readText(); this.args = d.readText(); this.pID = d.readInt(); this.elapsedTime = d.readLong(); this.threadCnt = d.readInt(); this.cpuTime = d.readLong(); this.gcTime = d.readLong(); this.gcCount = d.readLong(); this.sqlTotalCnt = d.readInt(); this.sqlTotalTime = d.readLong(); this.sqlTotalRows = d.readLong(); this.sqlTotalRuns = d.readLong(); this.isStack = d.readBoolean(); this.objName = d.readText(); this.objType = d.readText(); this.position = d.readLong(); }
public Pack read(DataInputX din) throws IOException { DataInputX d = new DataInputX(din.readBlob()); readInternal(d); if(this.sqlTotalCnt > 0){ this.sqlStats = new ArrayList<MapValue>((int)this.sqlTotalCnt); MapValue value; for(int i=0; i<this.sqlTotalCnt; i++){ value = new MapValue(); this.sqlStats.add(value); value.put("hashValue",(long)d.readInt()); value.put("runs", (long)d.readInt()); value.put("startTime", d.readLong()); value.put("endTime", d.readLong()); value.put("totalTime", d.readLong()); value.put("minTime", d.readLong()); value.put("maxTime", d.readLong()); value.put("processedRows", d.readLong()); value.put("rowed", new BooleanValue(d.readBoolean())); } this.uniqueSqls = new HashMap<Integer, String>(this.sqlTotalCnt); for(int i=0; i<this.sqlTotalCnt; i++){ this.uniqueSqls.put(d.readInt(), d.readText()); } } return this; } }