@ThreadSafe
public interface ServerInterceptor {
    ...
}
I am developing a gRPC server. 
I found that the interface ServerInterceptor is annotated with @ThreadSafe. I am confused about this annotation when I want to implement ServerInterceptor. 
Does it mean I need to ensure thread safety of implementation?
 
     
     
    