Hiperspace::HiperSpace

Header Image
Project:
HiperSpace : Public abstract Class
Created: 18/11/2023 15:18:30
Modified: 18/11/2023 15:18:30
Project:
Advanced:
  • Attributes
  • Operations
  • Associations From
  • Advanced
  • Other Links
Attribute Scope Type
_disposedValue Protected bool
 
Operation
Public
BeginTransaction () : Transaction
Details:
Notes: If the space supports transactions, start one to ensure that values and indexes are both stored<br/><br/>@returns <br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
Bind (key: byte[], value: byte[], source: object?, ) : Result<byte[]>
Details:
Notes: Bind a key/value pair to the space, passing in the source object, if the driver can use additional metadata (e.g. EFCore)<br/><br/>@returns a result struct that indicates success, ignore, or fail<br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
Bind (key: byte[], value: byte[], version: DateTime, source: object?, ) : Result<byte[]>
Details:
Notes: Bind a key/value pair to the space, passing in the source object, if the driver can use additional metadata (e.g. EFCore)<br/><br/>@returns a result struct that indicates success, ignore, or fail<br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
BindAsync (key: byte[], value: byte[], source: object?, ) : Task<Result<byte[]>>
Details:
Notes: Bind a key/value pair to the space asyncronously, passing in the source object, if the driver can use additional metadata (e.g. EFCore)<br/><br/>@returns a result struct that indicates success, ignore, or fail<br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
BindAsync (key: byte[], value: byte[], version: DateTime, source: object?, ) : Task<Result<byte[]>>
Details:
Notes: Bind a key/value pair to the space asyncronously, passing in the source object, if the driver can use additional metadata (e.g. EFCore)<br/><br/>@returns a result struct that indicates success, ignore, or fail<br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
Bound (key: byte[], value: byte[], entity: object?, ) : void
Details:
[ Is static False. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
Protected
Dispose (disposing: bool, ) : void
Details:
Notes: release all resources<br/>
[ Is static False. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
Public
Dispose () : void
Details:
[ Is static False. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
Public
EndTransaction () : void
Details:
Notes: End transaction called from #lt;see cref="Transaction"/#gt;<br/><br/>@returns <br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
Find (begin: byte[], end: byte[], ) : IEnumerable<(byte[] Key, byte[] Value)>
Details:
Notes: Find all values of space between the key values<br/><br/>@returns <br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
Find (begin: byte[], end: byte[], version: DateTime?, ) : IEnumerable<(byte[] Key, DateTime AsAt, byte[] Value)>
Details:
Notes: Find all values of space between the key values<br/><br/>@returns <br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
FindAsync (begin: byte[], end: byte[], ) : Task<IEnumerable<(byte[] Key, byte[] Value)>>
Details:
Notes: Find all values of space between the key values asyncronously<br/><br/>@returns <br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
FindAsync (begin: byte[], end: byte[], version: DateTime?, ) : Task<IEnumerable<(byte[] Key,DateTime AsAt, byte[] Value)>>
Details:
Notes: Find all values of space between the key values asyncronously<br/><br/>@returns <br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
Get (key: byte[], ) : byte
Details:
Notes: Get a single unique value from space<br/><br/>@returns <br/>
[ Is static False. Is abstract True. Is return array True. Is query False. Is synchronized False. ]
Public
Get (key: byte[], version: DateTime?, ) : (byte[] Value, DateTime version)
Details:
Notes: Get a single unique value from space<br/><br/>@returns <br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
GetAsync (key: byte[], ) : Task<byte[]>
Details:
Notes: Get a single unique value from space<br/><br/>@returns <br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
GetAsync (key: byte[], version: DateTime?, ) : Task<(byte[] Value, DateTime version)>
Details:
Notes: Get a single unique value from space<br/><br/>@returns <br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
GetVersions (key: byte[], ) : IEnumerable<(byte[] value, DateTime version)>
Details:
Notes: Get the version history for a key item<br/><br/>@param ="version" version stamp or null for latest<br/>@returns <br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
GetVersionsAsync (key: byte[], ) : Task<IEnumerable<(byte[] value, DateTime version)>>
Details:
Notes: Get the version history for a key item async<br/><br/>@returns <br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
HiperSpace () :
Details:
[ Is static False. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
Private
~HiperSpace () :
Details:
Notes: TODO: override finalizer only if 'Dispose(bool disposing)' has code to free unmanaged resources<br/>
[ Is static False. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
Public
OnBind () : Bound?
Details:
Notes: Event to capture Bind Events<br/>
[ Is static False. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
Protected
RaiseOnBind (key: byte[], value: byte[], entity: object?, ) : void
Details:
[ Is static False. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
Public
Space () : IEnumerable<(byte[] Key, byte[] Value)>
Details:
Notes: Enumeration of raw values for transfer<br/><br/>@returns content of space<br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
SpaceAsync () : Task<IEnumerable<(byte[] Key, byte[] Value)>>
Details:
Notes: Async Enumeration of raw values for transfer<br/><br/>@returns content of space<br/>
[ Is static False. Is abstract True. Is return array False. Is query False. Is synchronized False. ]
Public
Unzip (stream: Stream, ) : void
Details:
Notes: populate the space with the content of zip stream<br/>
[ Is static False. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
Public
UnzipAsync (stream: Stream, ) : Task
Details:
Notes: populate the space with the content of zip stream async<br/>
[ Is static False. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
Public
Zip (stream: Stream, level: CompressionLevel, ) : void
Details:
Notes: Transfer the entire content of the space to a zip stream<br/>
[ Is static False. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
Public
ZipAsync (stream: Stream, level: CompressionLevel, ) : Task
Details:
Notes: Transfer the entire content of the space to a zip stream async<br/>
[ Is static False. Is abstract False. Is return array False. Is query False. Is synchronized False. ]
Element Source Role Target Role
SubSpace
Class  
Name:  
 
Name: _space
 
Details:
 
GenerationSpace
Class  
Name:  
 
Name: _write
 
Details:
 
KeyPath
Class  
Name:  
 
Name: Space
 
Details:
 
Transaction
Class  
Name:  
 
Name: _space
 
Details:
 
GenerationSpace
Class  
Name:  
 
Name: _read
 
Details:
 
Property Value
isFinalSpecialization: 0
Object Type Connection Direction Notes
SubSpace Class Generalization From  
HeapSpace Class Generalization From  
RockSpace Class Generalization From  
GenerationSpace Class Generalization From