You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import com.google.protobuf.Any // if imported, will throw a coder error below
case class A(userId: Int)
object Job {
def main(cmdlineArgs: Array[String]): Unit = {
implicitly[com.spotify.scio.coders.Coder[A]]
}
}
Throws:
[error] Cannot find an implicit Coder instance for type:
[error]
[error] >> A
Aliasing the import or using the fully resolved class name sidesteps the issue
import com.google.protobuf.{Any => GAny}
The text was updated successfully, but these errors were encountered:
Throws:
Aliasing the import or using the fully resolved class name sidesteps the issue
The text was updated successfully, but these errors were encountered: