How to use the @node-ts/bus-core.BUS_SYMBOLS.JsonSerializer function in @node-ts/bus-core

To help you get started, we’ve selected a few @node-ts/bus-core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github node-ts / bus / packages / bus-postgres / src / postgres-persistence.ts View on Github external
constructor (
    @inject(BUS_POSTGRES_INTERNAL_SYMBOLS.PostgresPool) private readonly postgres: Pool,
    @inject(BUS_POSTGRES_SYMBOLS.PostgresConfiguration) private readonly configuration: PostgresConfiguration,
    @inject(BUS_SYMBOLS.JsonSerializer) private readonly serializer: JsonSerializer,
    @inject(LOGGER_SYMBOLS.Logger) readonly logger: Logger
  ) {
  }