> */ public function configs(): Generator { yield 'default' => [ new ClientConfig( heartbeatInterval: 3000, snappy: false, readTimeout: 1, ), ]; yield 'snappy' => [ new ClientConfig( heartbeatInterval: 3000, snappy: true, readTimeout: 1, ), ]; } }