Uses of Interface
org.somda.sdc.biceps.common.storage.MdibStorage
-
Packages that use MdibStorage Package Description org.somda.sdc.biceps.common.access MDIB read access functionality that is shared between the MDIB provider and consumer sides.org.somda.sdc.biceps.common.access.factory Factories for common access classes.org.somda.sdc.biceps.common.preprocessing Preprocessing actions shared between the MDIB provider and consumer sides.org.somda.sdc.biceps.common.storage MDIB storage implementation for BICEPS.org.somda.sdc.biceps.common.storage.factory Factories for storage classes.org.somda.sdc.biceps.consumer.preprocessing Preprocessing actions for RemoteMdibAccess.org.somda.sdc.biceps.provider.preprocessing Preprocessing actions for LocalMdibAccess. -
-
Uses of MdibStorage in org.somda.sdc.biceps.common.access
Constructors in org.somda.sdc.biceps.common.access with parameters of type MdibStorage Constructor Description ReadTransactionImpl(MdibStorage mdibStorage, Lock lock) -
Uses of MdibStorage in org.somda.sdc.biceps.common.access.factory
Methods in org.somda.sdc.biceps.common.access.factory with parameters of type MdibStorage Modifier and Type Method Description ReadTransactionReadTransactionFactory. createReadTransaction(MdibStorage mdibStorage, Lock lock)Creates a read transaction intended for multiple read requests on an MDIB access object. -
Uses of MdibStorage in org.somda.sdc.biceps.common.preprocessing
Methods in org.somda.sdc.biceps.common.preprocessing with parameters of type MdibStorage Modifier and Type Method Description voidDescriptorChildRemover. process(MdibDescriptionModifications allModifications, MdibDescriptionModification currentModification, MdibStorage storage) -
Uses of MdibStorage in org.somda.sdc.biceps.common.storage
Classes in org.somda.sdc.biceps.common.storage that implement MdibStorage Modifier and Type Class Description classMdibStorageImplDefault implementation of MdibStorage.Methods in org.somda.sdc.biceps.common.storage with parameters of type MdibStorage Modifier and Type Method Description default voidDescriptionPreprocessingSegment. afterLastModification(MdibDescriptionModifications modifications, MdibStorage mdibStorage)Function that is invoked after the last modification in the processing chain has been applied.default voidStatePreprocessingSegment. afterLastModification(MdibStateModifications modifications, MdibStorage mdibStorage)Function that is invoked after the last modification in the processing chain has been applied.default voidDescriptionPreprocessingSegment. beforeFirstModification(MdibDescriptionModifications modifications, MdibStorage mdibStorage)Function that is invoked before the first modification in the processing chain is applied.default voidStatePreprocessingSegment. beforeFirstModification(MdibStateModifications modifications, MdibStorage mdibStorage)Function that is invoked before the first modification in the processing chain is applied.voidDescriptionPreprocessingSegment. process(MdibDescriptionModifications allModifications, MdibDescriptionModification currentModification, MdibStorage storage)In a sequence of modifications this function processes one modification.voidStatePreprocessingSegment. process(MdibStateModifications modifications, AbstractState modification, MdibStorage storage)In a sequence of modifications this function processes one modification. -
Uses of MdibStorage in org.somda.sdc.biceps.common.storage.factory
Methods in org.somda.sdc.biceps.common.storage.factory that return MdibStorage Modifier and Type Method Description MdibStorageMdibStorageFactory. createMdibStorage()Creates a storage initialized with a random MDIB version.MdibStorageMdibStorageFactory. createMdibStorage(MdibVersion mdibVersion)Creates a storage initialized with the given MDIB version.MdibStorageMdibStorageFactory. createMdibStorage(MdibVersion mdibVersion, BigInteger mdDescriptionVersion, BigInteger mdStateVersion)Creates a storage initialized with the given MDIB version, MD description and MD state version.Methods in org.somda.sdc.biceps.common.storage.factory with parameters of type MdibStorage Modifier and Type Method Description MdibStoragePreprocessingChainMdibStoragePreprocessingChainFactory. createMdibStoragePreprocessingChain(MdibStorage mdibStorage, List<DescriptionPreprocessingSegment> descriptionChainSegments, List<StatePreprocessingSegment> stateChainSegments)Creates a new MdibStoragePreprocessingChain instance. -
Uses of MdibStorage in org.somda.sdc.biceps.consumer.preprocessing
Methods in org.somda.sdc.biceps.consumer.preprocessing with parameters of type MdibStorage Modifier and Type Method Description voidVersionDuplicateHandler. afterLastModification(MdibStateModifications modifications, MdibStorage mdibStorage)voidVersionDuplicateHandler. beforeFirstModification(MdibStateModifications modifications, MdibStorage mdibStorage)voidVersionDuplicateHandler. process(MdibStateModifications modifications, AbstractState modification, MdibStorage storage) -
Uses of MdibStorage in org.somda.sdc.biceps.provider.preprocessing
-