Methods marked with this attribute will not be treated as web endpoints.
This attribute enables the definition of public methods that do not take part in the interface genration process.
interface IAPI { // Accessible as "GET /info" string getInfo(); // Not accessible over HTTP @noRoute int getFoo(); }
See Implementation
Methods marked with this attribute will not be treated as web endpoints.
This attribute enables the definition of public methods that do not take part in the interface genration process.