Package io.roastedroot.proxywasm
Interface Plugin
-
public interface Plugin
Represents a Proxy-WASM plugin, providing the bridge between the host environment and the WASM module.Concrete Plugin instances are created using a
PluginFactory
. The actual WASM instance and interaction logic are managed internally.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
name()
Returns the configured name of this plugin instance.
-
-
-
Method Detail
-
name
String name()
Returns the configured name of this plugin instance.- Returns:
- the plugin name, which might be null if not explicitly set via the builder.
-
-