Skip to content

Commit

Permalink
Add missing sigunatures
Browse files Browse the repository at this point in the history
  • Loading branch information
Watson1978 committed Feb 14, 2024
1 parent 26aac08 commit b60788c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion sig/ilios.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,19 @@ module Ilios

module Cassandra
class Cluster
PROTOCOL_VERSION_V1: Integer
PROTOCOL_VERSION_V2: Integer
PROTOCOL_VERSION_V3: Integer
PROTOCOL_VERSION_V4: Integer
PROTOCOL_VERSION_V5: Integer
PROTOCOL_VERSION_DSEV1: Integer
PROTOCOL_VERSION_DSEV2: Integer

def connect: () -> Ilios::Cassandra::Session
def hosts: (Array[String]) -> self
def port: (Integer) -> self
def keyspace: (String) -> self
def protocol_version: (Integer) -> self
def protocol_version: (ROTOCOL_VERSION_V1 | PROTOCOL_VERSION_V2 | PROTOCOL_VERSION_V3 | PROTOCOL_VERSION_V4 | PROTOCOL_VERSION_V5 | PROTOCOL_VERSION_DSEV1 | PROTOCOL_VERSION_DSEV2) -> self
def connect_timeout: (Integer) -> self
def request_timeout: (Integer) -> self
def resolve_timeout: (Integer) -> self
Expand Down

0 comments on commit b60788c

Please sign in to comment.