Sha256: 063f2e297064ea24d9f6c6a9386576fb29df3a3b0bb1b46ede9ffd0244c6dfcc
Contents?: true
Size: 386 Bytes
Versions: 11
Compression:
Stored size: 386 Bytes
Contents
# frozen_string_literal: true module Karafka module Connection # Builder used to construct Kafka client module Builder class << self # Builds a Kafka::Cient instance that we use to work with Kafka cluster # @return [::Kafka::Client] returns a Kafka client def call Kafka.new(*ApiAdapter.client) end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems