Package net.xeoh.plugins.diagnosis.local.impl.serialization.java

Examples of net.xeoh.plugins.diagnosis.local.impl.serialization.java.Entry


    @Override
    public void status(Object value, StatusOption... options) {
        final long timestamp = System.currentTimeMillis();
        final long id = Thread.currentThread().getId();

        final Entry entry = new Entry();
        entry.date = timestamp;
        entry.threadID = id;
        entry.channel = this.channel.getCanonicalName();
        entry.value = value;
View Full Code Here

TOP

Related Classes of net.xeoh.plugins.diagnosis.local.impl.serialization.java.Entry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.