星火API的基本子集需要隱ClassTags
(見Scala: What is a TypeTag and how do I use it?)和PairDStreamFunctions.mapWithState
是沒有什麼不同。檢查class definition:
class PairDStreamFunctions[K, V](self: DStream[(K, V)])
(implicit kt: ClassTag[K], vt: ClassTag[V], ord: Ordering[K])
and:
def mapWithState[StateType: ClassTag, MappedType: ClassTag](
spec: StateSpec[K, V, StateType, MappedType]
): MapWithStateDStream[K, V, StateType, MappedType] = {
...
}
如果想創造出運行在一個通用的對流和使用mapWithState
你至少應該爲KeyType
和ValueType
類型提供ClassTags
功能:
def foo[T : ClassTag, U : ClassTag](
stream: DStream[(T, U)], f: StateSpec[T, U, Int, Int]) = stream.mapWithState(f)
如果StateType
和MappedType
也是參數化的,您也需要ClassTags
:
def bar[T : ClassTag, U : ClassTag, V : ClassTag, W : ClassTag](
stream: DStream[(T, U)], f: StateSpec[T, U, V, W]) = stream.mapWithState(f)