Opened 14 years ago
Last modified 14 years ago
#424 closed enhancement
Ampliación de funcionalidad métodos Get de MMS::Container: si no existe el Objeto en memoria, cargarlo de repositorio — at Version 1
Reported by: | atorre | Owned by: | Pedro Gea |
---|---|---|---|
Priority: | critical | Milestone: | Release 0.6 |
Component: | Persistence | Keywords: | Container, métodos Get, Load, Repository |
Cc: |
Description (last modified by )
Hola MMS,
creo que se podría ampliar la funcionalidad de los métodos Get del contenedor de MMS. Si no existe en el contenedor, lo podría intentar cargar de un repositorio (¿o un conjunto de repositorios ordenados?) que se pasaría como argumento adicional en el Anything info.
Sigue un ejemplo de una función que lo hace:
NameBlock GetDataSet_INELO(Anything info) // INELO: If Not Exists, LOad { Real dsFound = MMS::Container::FindDataSet(info); If(dsFound, MMS::Container::GetDataSet(dsFound), { WriteLn("GetDataSet_INELO:\nDataSet "<< info["DataSetName"] +" not loaded", "W"); NameBlock repo = info["Repository"]; repo::LoadDataSet(info) }) }; MMS::@DataSet Prueba = GetDataSet_INELO( [[ Text DataSetName = "<DATA_SET_NAME>", Text DataSetVersion = "<DATA_SET_VERSION>", MMS::@Repository Repository = KNOWN_REPOSITORY_OBJECT ]]);
Change History (1)
comment:1 Changed 14 years ago by
Component: | General → Persistence |
---|---|
Description: | modified (diff) |
Note: See
TracTickets for help on using
tickets.
Este tique está relacionado con #385. Podrían tratarse conjuntamente.