We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Example:
class DebugProcessor<T> extends ComplexProcessor<T> { public constructor( private readonly dataSourceName: string, private readonly processorName: string, private readonly wrapperProcessor: ComplexProcessor<T> ) { super(wrapperProcessor.value); } protected processor(data: T): T { console.log(`DebugProcess(pre): ${this.dataSourceName} ${this.processorName}`, data); const result = this.wrapperProcessor.process(data); console.log(`DebugProcess(post): ${this.dataSourceName} ${this.processorName}`, result); return result; } }
The text was updated successfully, but these errors were encountered:
e059b97
chore(release): 3.2.0 [skip ci]
d69304a
# [3.2.0](v3.1.2...v3.2.0) (2020-10-20) ### Features * **DebugProcessor:** add DebugProcessor ([e059b97](e059b97)), closes [#99](#99)
This issue has been resolved in release v3.2.0!
You can install the npm package for v3.2.0 using npm install @colonise/datasource@3.2.0
npm install @colonise/datasource@3.2.0
Automatically generated by semantic-release.
Sorry, something went wrong.
No branches or pull requests
Example:
The text was updated successfully, but these errors were encountered: