opcua icon indicating copy to clipboard operation
opcua copied to clipboard

Drop WithContext methods

Open magiconair opened this issue 2 years ago • 1 comments

As announced in v0.3.0 we will drop all WithContext() methods in v0.5.0 and require that the non-WithContext() methods require a context.Context

func (c *Client) Read(...) {...}
func (c *Client) ReadWithContext(ctx context.Context, ...) { ... }

will become

func (c *Client) Read(ctx context.Context, ...) { ... }

magiconair avatar Jan 27 '22 05:01 magiconair

This needs a rebase after v0.3.1

magiconair avatar Jan 27 '22 06:01 magiconair