Sha256: cf6be3280c10607b8dbab8f430d287581c2b12836ad9051a47b2c9a74f201ccd
Contents?: true
Size: 1.8 KB
Versions: 4
Compression:
Stored size: 1.8 KB
Contents
# frozen_string_literal: true # Released under the MIT License. # Copyright, 2019-2024, by Samuel Williams. require 'io/endpoint/unix_endpoint' module Falcon # An endpoint suitable for proxing requests, typically via a unix pipe. class ProxyEndpoint < ::IO::Endpoint::Generic # Initialize the proxy endpoint. # @parameter endpoint [::IO::Endpoint::Generic] The endpoint which will be used for connecting/binding. def initialize(endpoint, **options) super(**options) @endpoint = endpoint end def to_s "\#<#{self.class} protocol=#{self.protocol} endpoint=#{@endpoint}>" end # The actual endpoint for I/O. # @attribute [::IO::Endpoint::Generic] attr :endpoint # The protocol to use for this connection. # @returns [Async::HTTP::Protocol] A specific protocol, e.g. {Async::HTTP::Protocol::HTTP1} def protocol @options[:protocol] end # The scheme to use for this endpoint. # e.g. `"http"`. # @returns [String] def scheme @options[:scheme] end # The authority to use for this endpoint. # e.g. `"myapp.com"`. # @returns [String] def authority @options[:authority] end # Connect to the endpoint. def connect(&block) @endpoint.connect(&block) end # Bind to the endpoint. def bind(&block) @endpoint.bind(&block) end # Enumerate the endpoint. # If the endpoint has multiple underlying endpoints, this will enumerate them individually. # @yields {|endpoint| ...} # @parameter endpoint [ProxyEndpoint] def each return to_enum unless block_given? @endpoint.each do |endpoint| yield self.class.new(endpoint, **@options) end end # Create a proxy unix endpoint with the specific path. # @returns [ProxyEndpoint] def self.unix(path, **options) self.new(::IO::Endpoint.unix(path), **options) end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
falcon-0.48.3 | lib/falcon/proxy_endpoint.rb |
falcon-0.48.2 | lib/falcon/proxy_endpoint.rb |
falcon-0.48.1 | lib/falcon/proxy_endpoint.rb |
falcon-0.48.0 | lib/falcon/proxy_endpoint.rb |