public abstract class BlockId
extends Object
If your BlockId should be serializable, be sure to add it to the BlockId.apply() method.
Constructor and Description |
---|
BlockId() |
Modifier and Type | Method and Description |
---|---|
static scala.Product |
apply(String id)
Converts a BlockId "name" String back into a BlockId.
|
scala.Option<RDDBlockId> |
asRDDId() |
static scala.util.matching.Regex |
BROADCAST() |
boolean |
equals(Object other) |
int |
hashCode() |
boolean |
isBroadcast() |
boolean |
isRDD() |
boolean |
isShuffle() |
abstract String |
name()
A globally unique identifier for this Block.
|
static scala.util.matching.Regex |
RDD() |
static scala.util.matching.Regex |
SHUFFLE_INDEX() |
static scala.util.matching.Regex |
SHUFFLE() |
static scala.util.matching.Regex |
STREAM() |
static scala.util.matching.Regex |
TASKRESULT() |
static scala.util.matching.Regex |
TEST() |
String |
toString() |
public static scala.util.matching.Regex RDD()
public static scala.util.matching.Regex SHUFFLE()
public static scala.util.matching.Regex SHUFFLE_INDEX()
public static scala.util.matching.Regex BROADCAST()
public static scala.util.matching.Regex TASKRESULT()
public static scala.util.matching.Regex STREAM()
public static scala.util.matching.Regex TEST()
public static scala.Product apply(String id)
public abstract String name()
public scala.Option<RDDBlockId> asRDDId()
public boolean isRDD()
public boolean isShuffle()
public boolean isBroadcast()
public String toString()
toString
in class Object
public int hashCode()
hashCode
in class Object
public boolean equals(Object other)
equals
in class Object