...

Package streamer

import "github.com/hyperledger/fabric-ca/lib/streamer"
Overview
Index

Overview ▾

func StreamJSON

func StreamJSON(decoder *json.Decoder, search []SearchElement) (bool, error)

StreamJSON searches the JSON stream for arrays matching a search element. For each array that it finds, it streams them one element at a time.

func StreamJSONArray

func StreamJSONArray(decoder *json.Decoder, path string, cb func(*json.Decoder) error) (bool, error)

StreamJSONArray searches the JSON stream for an array matching 'path'. For each element of this array, it streams one element at a time.

type SearchElement

SearchElement defines the JSON arrays for which to search

type SearchElement struct {
    Path string
    CB   func(*json.Decoder) error
}