Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement API surface #8

Closed
92 tasks done
maennchen opened this issue Jul 17, 2024 · 1 comment · Fixed by #18, #17, #16, #14 or #13
Closed
92 tasks done

Implement API surface #8

maennchen opened this issue Jul 17, 2024 · 1 comment · Fixed by #18, #17, #16, #14 or #13
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@maennchen
Copy link
Member

maennchen commented Jul 17, 2024

  • G2ConfigMgr
    • init
    • addConfig
    • getConfigList
    • getConfig
    • getDefaultConfigID
    • setDefaultConfigID
    • replaceDefaultConfigID
    • Cleanup
      • destroy
  • G2Config
    • Configuration object management
      • init
      • create
      • save
      • load
    • Datasource management
      • listDataSources
      • addDataSource
      • deleteDataSource
    • Configuration object cleanup
      • close
      • destroy
  • G2Engine
    • Initialization
      • init
      • initWithConfigID
      • reinit
      • destroy
      • primeEngine
      • getActiveConfigID
      • exportConfig
      • getRepositoryLastModifiedTime
    • Flags - Generic Flag Handling
    • Adding Records
      • addRecord
      • addRecordWithInfo
      • addRecordWithReturnedRecordID
      • addRecordWithInfoWithReturnedRecordID
    • Replacing Records
      • replaceRecord
      • replaceRecordWithInfo
    • Reevaluating
      • reevaluateRecord
      • reevaluateRecordWithInfo
      • reevaluateEntity
      • reevaluateEntityWithInfo
    • Redo Processing
      • countRedoRecords
      • getRedoRecord
      • process
      • processWithInfo
      • processRedoRecord
      • processRedoRecordWithInfo
    • Deleting Records
      • deleteRecord
      • deleteRecordWithInfo
    • Getting Entities and Records
      • getRecord
      • getEntityByRecordID
      • getEntityByEntityID
      • getVirtualEntityByRecordID
    • Searching for Entities
      • searchByAttributes
      • searchByAttributesV3
    • Finding Paths
      • findPathByEntityID
      • findPathByRecordID
      • findPathExcludingByEntityID
      • findPathExcludingByRecordID
      • findPathIncludingSourceByEntityID
      • findPathIncludingSourceByRecordID
    • Finding Networks
      • findNetworkByEntityID
      • findNetworkByRecordID
    • Why
      • whyRecords
      • whyEntityByRecordID
      • whyEntityByEntityID
    • Why (not)
      • whyEntities
    • How
      • howEntityByEntityID
    • Reporting
      • exportCSVEntityReport
      • exportJSONEntityReport
      • fetchNext
      • closeExport
    • Cleanup
      • purgeRepository
    • Statistics
      • stats
@maennchen maennchen added the enhancement New feature or request label Jul 17, 2024
@maennchen maennchen self-assigned this Jul 17, 2024
@maennchen maennchen added this to the v1.0.0 milestone Jul 17, 2024
@maennchen
Copy link
Member Author

TODO: Redo Processing:

I don't know how to trigger a redo process. Therefore the functionality is not fully tested. Need input from Senzing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment