All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spark.storage.PutResult.scala Maven / Gradle / Ivy

The newest version!
package spark.storage

import java.nio.ByteBuffer

/**
 * Result of adding a block into a BlockStore. Contains its estimated size, and possibly the
 * values put if the caller asked for them to be returned (e.g. for chaining replication)
 */
private[spark] case class PutResult(size: Long, data: Either[Iterator[_], ByteBuffer])




© 2015 - 2025 Weber Informatics LLC | Privacy Policy