Package com.avpkit.core.io
Interface IURLProtocolRegistrar
-
public interface IURLProtocolRegistrar
For Internal Use Only. A signature interface for objects that want to register protocols for AVPKit to use.- Author:
- aclarke
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidregisterProtocol(java.lang.String protocol, URLProtocolManager manager)Tells AVPKit that any requests for a given protocol should be redirected to the given manager.
-
-
-
Method Detail
-
registerProtocol
void registerProtocol(java.lang.String protocol, URLProtocolManager manager)
Tells AVPKit that any requests for a given protocol should be redirected to the given manager.NOTE: Protocol can only be alpha-characters; no numbers or punctuation.
- Parameters:
protocol- The protocol (alpha-only) without ":"manager- The manager object you want to use.
-
-