Uses of Interface
org.apache.wicket.serialize.ISerializer
-
Packages that use ISerializer Package Description org.apache.wicket The core Wicket package.org.apache.wicket.pageStore org.apache.wicket.serialize.java org.apache.wicket.settings -
-
Uses of ISerializer in org.apache.wicket
Methods in org.apache.wicket that return ISerializer Modifier and Type Method Description protected ISerializerDefaultPageManagerProvider. getSerializer()Get theISerializerto use for serializing of pages. -
Uses of ISerializer in org.apache.wicket.pageStore
Constructors in org.apache.wicket.pageStore with parameters of type ISerializer Constructor Description DiskPageStore(java.lang.String applicationName, java.io.File fileStoreFolder, org.apache.wicket.util.lang.Bytes maxSizePerSession, ISerializer serializer)Create a store to disk.FilePageStore(java.lang.String applicationName, java.io.File fileStoreFolder, org.apache.wicket.util.lang.Bytes maxSizePerSession, ISerializer serializer)Create a store to files.InSessionPageStore(IPageStore delegate, int maxPages, ISerializer serializer)KeepmaxPagesin each session.SerializingPageStore(IPageStore delegate, ISerializer serializer) -
Uses of ISerializer in org.apache.wicket.serialize.java
Classes in org.apache.wicket.serialize.java that implement ISerializer Modifier and Type Class Description classDeflatedJavaSerializerAJavaSerializerthat deflates the outputstream on the fly, reducing page store size by up to a factor 8.classJavaSerializerAn implementation ofISerializerbased on Java Serialization (ObjectOutputStream, ObjectInputStream) Requires the application key to enable serialization and deserialisation outside thread in which application thread local is set -
Uses of ISerializer in org.apache.wicket.settings
Methods in org.apache.wicket.settings that return ISerializer Modifier and Type Method Description ISerializerFrameworkSettings. getSerializer()Methods in org.apache.wicket.settings with parameters of type ISerializer Modifier and Type Method Description FrameworkSettingsFrameworkSettings. setSerializer(ISerializer serializer)Sets theISerializerthat will be used to convert objects to/from byte arrays
-