nakadi-client-0.4.0.0: Client library for the Nakadi Event Broker

Copyright(c) Moritz Schulte 2017
LicenseBSD3
Maintainermtesseract@silverratio.net
Stabilityexperimental
PortabilityPOSIX
Safe HaskellNone
LanguageHaskell2010

Network.Nakadi.EventTypes.Partitions

Description

This module implements the /event-types/EVENT-TYPE/partitions API.

Synopsis

Documentation

eventTypePartitions Source #

Arguments

:: MonadNakadi m 
=> Config

Configuration

-> EventTypeName

Name of Event Type

-> m [Partition]

Partition Information

GET to /event-types/EVENT-TYPE/partitions. Retrieves information about all partitions.

eventTypePartitionsR Source #

Arguments

:: MonadNakadiEnv r m 
=> EventTypeName

Name of Event Type

-> m [Partition]

Partition Information

GET to /event-types/EVENT-TYPE/partitions. Retrieves information about all partitions, using the configuration contained in the environment.

eventTypePartition Source #

Arguments

:: MonadNakadi m 
=> Config

Configuration

-> EventTypeName

Name of Event Type

-> PartitionName

Name of Partition to look up

-> m Partition

Partition Information

GET to /event-types/EVENT-TYPE/partitions/PARTITION. Retrieves information about a single partition.

eventTypePartitionR Source #

Arguments

:: MonadNakadiEnv r m 
=> EventTypeName

Name of Event Type

-> PartitionName

Name of Partition to look up

-> m Partition

Partition Information

GET to /event-types/EVENT-TYPE/partitions/PARTITION. Retrieves information about a single partition, using the configuration contained in the environment.