Interface ImmutableSessionFactory<MV,AV>
-
- All Known Subinterfaces:
SessionFactory<SC,MV,AV,LC>
- All Known Implementing Classes:
CompositeImmutableSessionFactory,CompositeSessionFactory
public interface ImmutableSessionFactory<MV,AV> extends org.wildfly.clustering.ee.Locator<String,Map.Entry<MV,AV>>
Factory for creating anImmutableSession.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ImmutableSessioncreateImmutableSession(String id, Map.Entry<MV,AV> entry)ImmutableSessioncreateImmutableSession(String id, ImmutableSessionMetaData metaData, ImmutableSessionAttributes attributes)ImmutableSessionAttributesFactory<AV>getAttributesFactory()ImmutableSessionMetaDataFactory<MV>getMetaDataFactory()
-
-
-
Method Detail
-
getMetaDataFactory
ImmutableSessionMetaDataFactory<MV> getMetaDataFactory()
-
getAttributesFactory
ImmutableSessionAttributesFactory<AV> getAttributesFactory()
-
createImmutableSession
default ImmutableSession createImmutableSession(String id, Map.Entry<MV,AV> entry)
-
createImmutableSession
ImmutableSession createImmutableSession(String id, ImmutableSessionMetaData metaData, ImmutableSessionAttributes attributes)
-
-