Package org.wicketstuff.pageserializer.common.listener

Examples of org.wicketstuff.pageserializer.common.listener.LoggingSerializationListener


        new SortedTreeSizeReport(reportOutput)));
    ITreeFilter filter = new TypeFilter(Class.class);
    ISerializedObjectTreeProcessor cleanedTreeProcessor = new TreeTransformator(treeProcessor,
      TreeTransformator.strip(filter));
    ISerializationListener listener = SerializationListeners.listOf(
      new DefaultJavaSerializationValidator(), new LoggingSerializationListener(),
      new AnalyzingSerializationListener(labelizer, treeProcessor),
      new AnalyzingSerializationListener(labelizer, cleanedTreeProcessor));
    InspectingKryoSerializer kryo = new InspectingKryoSerializer(Bytes.bytes(1000), listener);

    byte[] data = kryo.serialize(root);
View Full Code Here

TOP

Related Classes of org.wicketstuff.pageserializer.common.listener.LoggingSerializationListener

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.