stratumrpc

package
v1.0.1 Latest Latest
Warning

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

Go to latest
Published: Apr 20, 2021 License: MIT Imports: 6 Imported by: 0

Documentation

Overview

Package stratumrpc implements a JSON-RPC Stratum ClientCodec and ServerCodec for the rpc2 package.

Beside struct types, StratumCodec allows using positional arguments. Use []interface{} as the type of argument when sending and receiving methods.

Positional arguments example:

server.Handle("add", func(client *rpc2.Client, args []interface{}, result *float64) error {
	*result = args[0].(float64) + args[1].(float64)
	return nil
})

var result float64
client.Call("add", []interface{}{1, 2}, &result)

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewStratumCodec

func NewStratumCodec(conn io.ReadWriteCloser) rpc2.Codec

NewStratumCodec returns a new rpc2.Codec using JSON-RPC on conn.

Types

This section is empty.

Jump to

Keyboard shortcuts

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