@Documented @Retention(value=RUNTIME) @Target(value=TYPE) @Inherited public @interface FastInfoset
| Modifier and Type | Optional Element and Description | 
|---|---|
| boolean | forceSet to true in order for FastInfoset to be always used without negotiation | 
| int | serializerAttributeValueMapMemoryLimitSets the property  attributeValueMapMemoryLimiton FastInfoset StAX Serializers. | 
| int | serializerCharacterContentChunkMapMemoryLimitSets the property  characterContentChunkMapMemoryLimiton FastInfoset StAX Serializers. | 
| int | serializerMaxAttributeValueSizeSets the property  maxAttributeValueSizeon FastInfoset StAX Serializers. | 
| int | serializerMaxCharacterContentChunkSizeSets the property  maxCharacterContentChunkSizeon FastInfoset StAX Serializers. | 
| int | serializerMinAttributeValueSizeSets the property  minAttributeValueSizeon FastInfoset StAX Serializers. | 
| int | serializerMinCharacterContentChunkSizeSets the property  minCharacterContentChunkSizeon FastInfoset StAX Serializers. | 
public abstract boolean force
public abstract int serializerAttributeValueMapMemoryLimit
attributeValueMapMemoryLimit on FastInfoset StAX Serializers. The property
 controls attribute value map size and can be used to control the memory and (indirectly) CPU footprint of
 processing.public abstract int serializerMinAttributeValueSize
minAttributeValueSize on FastInfoset StAX Serializers. The property controls the
 minimum size of attribute values to be indexed.public abstract int serializerMaxAttributeValueSize
maxAttributeValueSize on FastInfoset StAX Serializers. The property controls the
 maximum size of attribute values to be indexed. Tests have shown that setting this property to lower
 values reduces CPU burden of processing, at the expense of larger sizes of resultant encoded Fast Infoset data.public abstract int serializerCharacterContentChunkMapMemoryLimit
characterContentChunkMapMemoryLimit on FastInfoset StAX Serializers. The property
 controls character content chunk map size and can be used to control the memory and (indirectly) CPU footprint of
 processing.public abstract int serializerMinCharacterContentChunkSize
minCharacterContentChunkSize on FastInfoset StAX Serializers. The property
 controls the minimum size of character content chunks to be indexed.public abstract int serializerMaxCharacterContentChunkSize
maxCharacterContentChunkSize on FastInfoset StAX Serializers. The property
 controls the maximum size of character content chunks to be indexed. Tests have shown that setting this
 property to lower values reduces CPU burden of processing, at the expense of larger sizes of resultant encoded
 Fast Infoset data.Apache CXF