I am curious how one would implement a Java Interface in Scala with the following signature;
public interface MyService<T> { ... }
Thanks!!
object ServiceImplementation extends MyService[String] { ... }
would be an example.