static void meshms_advance_read_offset(SubscriberId sid1, SubscriberId sid2, long offset) throws ServalDInterfaceException, IOException, InterruptedException
{
ServalDClient client = new ServerControl().getRestfulClient();
try {
MeshMSStatus status = client.meshmsAdvanceReadOffset(sid1, sid2, offset);
System.out.println("" + status);
}
catch (MeshMSException e) {
System.out.println(e.toString());
}