Rotor is a communication framework for work with remote objects from different devices. It makes the API development task easier removing all getter/setter requests. Client data changes are replicated in all devices listening the same object.
Here you can find all info about how to build a simple API with few lines.
Rotor philosophy states that the only needed requests are those that change data on remote database.
Rotor libraries are connected to Rotor and Redis servers. The first one controls object sharing queues, devices waiting for changes and all data edition on remote database. The second gives us Pub/Sub messaging pattern for data changes replication.
When devices make changes in objects, client libraries send generated differences to Rotor server. This differences are applied in the database and replicated on the rest of devices which are listening the same object.
Check paths page for more info.
Copyright 2018 RotorLab Organization
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.