pusher-http-haskell-1.1.0.1: Haskell client library for the Pusher HTTP API

Copyright(c) Will Sewell, 2016
LicenseMIT
Maintainerme@willsewell.com
Stabilityexperimental
Safe HaskellNone
LanguageHaskell2010

Network.Pusher.Protocol

Description

Types representing the JSON format of Pusher messages.

There are also types for query string parameters.

Synopsis

Documentation

data ChannelInfo Source #

The possible returned channel attributes when multiple when multiple channels are queried.

Constructors

ChannelInfo 

data ChannelInfoAttributes Source #

Enumeration of the attributes that can be queried about a single channel.

newtype ChannelInfoQuery Source #

A set of requested ChannelInfoAttributes.

newtype ChannelsInfo Source #

A map of channels to their ChannelInfo. The result of querying channel info from multuple channels.

newtype ChannelsInfoQuery Source #

A set of requested ChannelsInfoAttributes.

data ChannelsInfoAttributes Source #

Enumeration of the attributes that can be queried about multiple channels.

Constructors

ChannelsUserCount 

data User Source #

The data about a user returned when querying for users in a presence channel.

Constructors

User 

Fields

Instances

Eq User Source # 

Methods

(==) :: User -> User -> Bool #

(/=) :: User -> User -> Bool #

Show User Source # 

Methods

showsPrec :: Int -> User -> ShowS #

show :: User -> String #

showList :: [User] -> ShowS #

FromJSON User Source # 

Methods

parseJSON :: Value -> Parser User #

newtype Users Source #

A list of users returned by querying for users in a presence channel.

Constructors

Users [User] 

Instances

class ToURLParam a where Source #

Types that can be serialised to a querystring parameter value.

Minimal complete definition

toURLParam

Methods

toURLParam :: a -> Text Source #

Convert the data into a querystring parameter value.

toURLParam :: ToURLParam a => a -> Text Source #

Convert the data into a querystring parameter value.