haskell-xmpp-2.0.4: Haskell XMPP (eXtensible Message Passing Protocol, a.k.a. Jabber) library
Copyright(c) pierre 2007
LicenseBSD3
Maintainerk.pierre.k@gmail.com
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Network.XMPP.IQ

Description

XMPP IQ utilites

Synopsis

Documentation

iqSend Source #

Arguments

:: MonadIO m 
=> Text

ID to use

-> IQType

IQ type

-> [Node]

request contents

-> XmppMonad m () 

Send IQ of specified type with supplied data

iqReplyTo Source #

Arguments

:: (Stanza 'IQ 'Incoming e -> Bool)

Predicate used to match required IQ reply

-> (Stanza 'IQ 'Incoming e -> [Node])

transformer function

-> XmppThreadT IO () e