Processor interface missing fields
See original GitHub issueThe definition for Processor
, seems to be missing several of the fields described in the documentation for Package#processor. Also, I think the $process
method should be listed as optional.
import {Package} from 'dgeni';
export default new Package('example')
.processor({name: 'works', $process() {}})
.processor({name: 'does-not-work'})
.processor({name: 'also-does-not-work', $process() {}, $runBefore: ['works']})
.processor({name: 'still-does-not-work', $process() {}, $runAfter: ['works']})
;
I would be happy to submit a PR for this issue if that would be helpful.
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
json.Unmarshal to map[string]interface{} missing field #33179
FrozenDueToAge WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided. Comments. @ ...
Read more >Locating Missing Processor Resources Assigned to Shared ...
Problem. Processing units assigned to a shared processor pool as "reserved processing units" cannot be directly assigned to a partition.
Read more >NetSuite Applications Suite - Overwrite Missing Fields
Customizing the Fixed Assets Report Template through the User Interface ... Troubleshooting Missing Retrieved Products in NetSuite Connector ...
Read more >Why does type Record sometimes complain about missing ...
I.e. if Record does not demand all possible properties to actually exist, why is the result an object type with required fields instead...
Read more >Item processing - Spring
One typical use for an item processor is to filter out records before they are passed to the ItemWriter . Filtering is an...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Done 😃
Yes!
Have a good night!