Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

// ================================================================= | |
// | |
// Copyright (C) 2019 Spatial Current, Inc. - All Rights Reserved | |
// Released as open source under the MIT License. See LICENSE file. | |
// | |
// ================================================================= | |
package pipe | |
// BatchWriter contains the WriteObjects and Flush functions for writing a batch of objects. | |
type BatchWriter interface { | |
WriteObjects(objects interface{}) error | |
Flush() error | |
} |