Details
-
New Feature
-
Resolution: Done
-
Major - P3
-
None
-
None
-
None
Description
Update the ops.Cursor type to the following:
type Cursor interface {
|
Next(context.Context) bool
|
Decode(interface{}) error
|
Err() error
|
Close(context.Context) error
|
}
|
Update the implementation of cursor to implement the new ops.Cursor interface.