goSSEClient

package module
v0.0.0-...-94c3b19 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 5, 2014 License: MIT Imports: 6 Imported by: 0

README

goSSEClient

Helper for Server-Sent Events

Returns a channel of SSEvents.

type SSEvent struct {
	Id   string
	Data []byte
}

Example

sseEvent, err := goSSEClient.OpenSSEUrl(url)
if err != nil {
	panic(err)
}

for ev := range sseEvent {
	// do what you want with the event
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func OpenSSEUrl

func OpenSSEUrl(url string) (<-chan SSEvent, error)

Types

type SSEvent

type SSEvent struct {
	Id   string
	Data []byte
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL