rs_dpr_service/jobs_table.md
Module used to implement abstract model of an SQLAlchemy table.
JobType
Bases: Enum
Enum for the job type specified in OGC API Processes specification
Source code in docs/rs-dpr-service/rs_dpr_service/jobs_table.py
34 35 36 37 38 39 40 | |
JobsTable
Bases: Base
Abstract implementation of SQLAlchemy Base
Must be kept in line with https://github.com/geopython/pygeoapi/blob/master/tests/data/postgres_manager_full_structure.backup.sql
Source code in docs/rs-dpr-service/rs_dpr_service/jobs_table.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | |
__init__(*args, **kwargs)
Invoked when creating a new record in the database table.
Source code in docs/rs-dpr-service/rs_dpr_service/jobs_table.py
75 76 77 78 | |
init_on_load()
Invoked when retrieving an existing record from the database table.
Source code in docs/rs-dpr-service/rs_dpr_service/jobs_table.py
80 81 82 83 | |