admin管理员组文章数量:1345884
I have a task execution service, I need to add saving the work history of these tasks to the database. Is it possible to implement this functionality completely through Quartz? That is, for Quartz to create a table, collect the data, and record it. I know that there are ITriggerListener and IJobListener interfaces, but I can't find information on how to make these listeners write to the database themselves. Quartz is already configured on the service and writes to the required database. We only need information specifically on ITriggerListener and IJobListener. Thanks for the help
I tried to implement an IJobListener, but I'm not sure if it saves data in the database.
I have a task execution service, I need to add saving the work history of these tasks to the database. Is it possible to implement this functionality completely through Quartz? That is, for Quartz to create a table, collect the data, and record it. I know that there are ITriggerListener and IJobListener interfaces, but I can't find information on how to make these listeners write to the database themselves. Quartz is already configured on the service and writes to the required database. We only need information specifically on ITriggerListener and IJobListener. Thanks for the help
I tried to implement an IJobListener, but I'm not sure if it saves data in the database.
Share Improve this question asked 2 days ago Гожев АртурГожев Артур 1 New contributor Гожев Артур is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 1- Please provide enough code so others can better understand or reproduce the problem. – Community Bot Commented 2 days ago
1 Answer
Reset to default 0there is pattern named outbox you will store the message in database and on schedule on quartz background service you will retrieve data from that database and on Process you can have 2 column named "Processed at " and "message" which will be updated by quratz service.
In this pattern you are storing record of process status
So:
you will store message on your table and a table named "outbox"
Quratz will retrieve data from "outbox" table
Service will process the message then it will update the message status and time
For storing both table, If you use ef core you can use "Interceptors", it will help you OnSaveChanges you insert into another table and finally saveChange(Unit of Work).
本文标签: csave history task QuartzStack Overflow
版权声明:本文标题:c# - save history task Quartz - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743815949a2543918.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论