Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
connection-client / lib / connection / client / substitute.rb
Size: Mime:
class Connection
  class Client
    class Substitute < Client
      def self.build
        reconnect_policy = ReconnectPolicy.get :never

        instance = new '<substitute>', 0, reconnect_policy
        ::Telemetry::Logger.configure instance
        instance
      end

      def build_connection
        Connection::Substitute.build
      end

      def eof
        connection.eof
      end

      def expect_read(data)
        connection.expect_read data
      end

      def expect_write(data)
        connection.expect_write data
      end
    end
  end
end