Class: Temporalio::Bridge::ConnectOptions Private

Inherits:
Object
  • Object
show all
Defined in:
lib/temporalio/bridge/connect_options.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(url:, tls:, client_version:, metadata:, retry_config:) ⇒ ConnectOptions

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of ConnectOptions.



6
7
8
9
10
11
12
# File 'lib/temporalio/bridge/connect_options.rb', line 6

def initialize(url:, tls:, client_version:, metadata:, retry_config:)
  @url = url
  @tls = tls
  @metadata = 
  @retry_config = retry_config
  @client_version = client_version
end

Instance Attribute Details

#client_versionObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



4
5
6
# File 'lib/temporalio/bridge/connect_options.rb', line 4

def client_version
  @client_version
end

#metadataObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



4
5
6
# File 'lib/temporalio/bridge/connect_options.rb', line 4

def 
  @metadata
end

#retry_configObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



4
5
6
# File 'lib/temporalio/bridge/connect_options.rb', line 4

def retry_config
  @retry_config
end

#tlsObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



4
5
6
# File 'lib/temporalio/bridge/connect_options.rb', line 4

def tls
  @tls
end

#urlObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



4
5
6
# File 'lib/temporalio/bridge/connect_options.rb', line 4

def url
  @url
end