📄️ Introduction
The Runabout Java Library (runabout-java) makes it easy for you to capture data in your application at runtime that is can be used within the Runabout IDE plugin to replay the event locally.
📄️ Installation
The runabout-java library is hosted on Maven Central. It is also open source (MIT) and source code can be found here.
📄️ Making methods replayable
To make a method in your project capable of being "replayed" you must invoke the Runabout Service and capture the JSON output.
📄️ Default serializers
Out of the box, Runabout will support going from Object -> Runabout input for the following types:
📄️ Custom serializers
There are two ways to implement Runabout serializers. They can be implement on individual classes to go from an instance of that class to Runabout Input, or you can implement a generic catch-all serializer that can handle Objects of different types.