core: Mark InternalNotifyOnServerBuilder @Internal

It is misnamed if it is @ExperimentalApi. Even being @Internal is
strange, since nothing in io.grpc actually uses it and so it could
actually be in io.grpc.internal.

I'm not trying to fix the API, but just make it slightly more
consistent.
This commit is contained in:
Eric Anderson 2017-06-16 14:55:53 -07:00
parent a3ac64a883
commit 6d8a66f3e3
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ package io.grpc;
* {@link ServerBuilder} is that this method will be called on all registered services implementing
* the interface after build() has been called and before the {@link Server} instance is returned.
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/2222")
@Internal
public interface InternalNotifyOnServerBuild {
/** Notifies the service that the server has been built. */
void notifyOnBuild(Server server);