Overview
This is a short overview of how to use server-side interface in KVision with the actual example. It contains just the basic concepts and ideas. You can find more information in the following chapters.
Let's assume we want to create an encoder application, that gets some text from the user and encodes it on the server with a chosen algorithm.
Common source set
We start by defining our data model and service interface in the common (shared) source set. We have to declare our "business" encode
method as suspending. We annotate the service interface with @KVService
, which will allow KVision do all its "magic".
Frontend source set
KVision compiler plugin will automatically generate EncodingService
class, which implements IEncodingService
interface. To use this class in the frontend application it is recommended to use getService()
function (you can also just use the name of the generated class, but in such case your project will not compile in IDE until compiler plugin task is executed).
Notice we just call the encode
method and get the result value directly. All asynchronous operations are hidden by the framework. We only have to use a coroutine builder function (launch
in this case).
Backend source set
(For convenience we will use Ktor module in this chapter)
To create an actual implementation of our EncodingService
we just have to implement the methods of the service interface.
Finally, we initialize routing in the main application function.
When we run our application everything will work automatically - a call on the client side will run the code on the server and the result will be sent back to the caller.
That's all - our first, fullstack KVision application is ready!
You can find "encoder-fullstack-ktor", a complete application based on this overview (with some visual enhancements of the GUI), in the kvision-examples repository on GitHub.
Last updated