Package org.apache.hadoop.thriftfs.jobtracker.api

Examples of org.apache.hadoop.thriftfs.jobtracker.api.ThriftCounter


            }
            return ret;
        }

        public static ThriftCounter toThrift(Counter c) {
            ThriftCounter ret = new ThriftCounter();
            ret.setDisplayName(c.getDisplayName());
            ret.setName(c.getName());
            ret.setValue(c.getValue());
            return ret;
        }
View Full Code Here

TOP

Related Classes of org.apache.hadoop.thriftfs.jobtracker.api.ThriftCounter

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.