WeatherGen

smithy4s.example.WeatherGen
See theWeatherGen companion object
trait WeatherGen[F[_, _, _, _, _]]

Provides weather forecasts.

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Transformed[P, P1]
class Constant[P]
object reified.type
Self type

Members list

Concise view

Value members

Abstract methods

def getCity(cityId: CityId): F[GetCityInput, GetCityError, GetCityOutput, Nothing, Nothing]
def getCurrentTime(): F[Unit, Nothing, GetCurrentTimeOutput, Nothing, Nothing]
def getForecast(cityId: CityId): F[GetForecastInput, Nothing, GetForecastOutput, Nothing, Nothing]
def listCities(nextToken: Option[String], pageSize: Option[Int]): F[ListCitiesInput, Nothing, ListCitiesOutput, Nothing, Nothing]

Concrete methods

def transform: PartiallyApplied[WeatherGen[F]]