Class: Temporalio::Connection::Service Abstract

Inherits:
Object
  • Object
show all
Defined in:
lib/temporalio/connection/service.rb

Overview

This class is abstract.

A superclass for defining services to interact with the Temporal API

Direct Known Subclasses

TestService, WorkflowService

Instance Method Summary collapse

Constructor Details

#initialize(core_connection, service) ⇒ Service

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 Service.



6
7
8
9
# File 'lib/temporalio/connection/service.rb', line 6

def initialize(core_connection, service)
  @core_connection = core_connection
  @service = service
end