public interface ContinuityBridge

The platform seam of the continuity framework, implemented by ports and returned from CodenameOneImplementation.getContinuityBridge(). A null bridge – the base implementation – leaves saving and restoring state on this device working, because that half is pure com.codename1.io.Storage, and makes every cross-device capability report itself unsupported.

Two independent capabilities live behind one bridge because a port that has either almost always has both, and an app asks about them separately anyway:

  • Continuation advertises what the user is doing so a second device they own can pick it up while the two are together. On Apple platforms this is an NSUserActivity; nothing else implements it, and nothing else is expected to.
  • The synced store is a small key/value store the platform carries between the user’s devices without them being near each other.

Everything crosses this boundary as data – strings and plist-representable maps – never as live model objects, because on Apple platforms the payload is handed to the operating system and may be delivered to a different device, and a different build of the app, than the one that produced it.

Methods

public abstract boolean isContinuationSupported()Returns true when this port can advertise the user’s current activity to their other devices.
public abstract void publishContinuation(String activityType, String title, Map<String, Object> userInfo)Advertises the user’s current activity, replacing whatever was advertised before.
public abstract void clearContinuation()Withdraws the advertised activity.
public abstract boolean isSyncedStoreSupported()Returns true when this port has a key/value store the platform syncs between the user’s devices.
public abstract boolean syncedStorePut(String key, String value)Writes a value to the synced store, replacing any previous value for the key.
public abstract String syncedStoreGet(String key)Reads a value from the synced store.
public abstract void syncedStoreRemove(String key)Removes a key from the synced store.
public abstract String[] syncedStoreKeys()Every key currently in the synced store, in no particular order.
public abstract void setCallback(ContinuityCallback callback)Installs the framework’s inbound seam.

Method details

isContinuationSupported

public abstract boolean isContinuationSupported()
Returns true when this port can advertise the user’s current activity to their other devices.

publishContinuation

public abstract void publishContinuation(String activityType, String title, Map<String, Object> userInfo)

Advertises the user’s current activity, replacing whatever was advertised before.

The payload has already been validated as representable and within the platform’s size budget by the time it arrives here.

Parameters

activityType String
the reverse-DNS type the build declared
title String
a human readable label the receiving device may show, or null
userInfo Map<String, Object>
the state, as strings, numbers, booleans, lists and maps of those

clearContinuation

public abstract void clearContinuation()
Withdraws the advertised activity. Nothing is being continued after this returns.

isSyncedStoreSupported

public abstract boolean isSyncedStoreSupported()
Returns true when this port has a key/value store the platform syncs between the user’s devices.

syncedStorePut

public abstract boolean syncedStorePut(String key, String value)

Writes a value to the synced store, replacing any previous value for the key.

Returns whether the store took it. A void signature made SyncedStore.put answer true whenever a store merely existed, so the documented fallback – write locally when the synced write fails – could never run, and a value the store refused was reported saved.

Parameters

key String
the key
value String
the value

Returns

true when the store holds the value afterwards

syncedStoreGet

public abstract String syncedStoreGet(String key)
Reads a value from the synced store.

Returns

the value, or null when the key is absent

syncedStoreRemove

public abstract void syncedStoreRemove(String key)
Removes a key from the synced store. Removing an absent key does nothing.

Parameters

key String
the key

syncedStoreKeys

public abstract String[] syncedStoreKeys()
Every key currently in the synced store, in no particular order. Never null.

setCallback

public abstract void setCallback(ContinuityCallback callback)

Installs the framework’s inbound seam. Ports must retain it and may call it from any thread.

It REPLACES the seam and may be called more than once, so a port that registers a native observer here must register that observer once and only replace the reference. It is not called once per listener – the framework collapses those – but it is called again at the few moments its answer to a held continuation changes: enable(), disable(), clear(), and a bridge the port has swapped.

Re-installing is also how the framework asks for a continuation the port DECLINED earlier and is holding. A port that offers a held activity when a callback is installed – which is what recovers a Handoff that cold-launched the app before anything was listening – is relying on exactly that, so a framework that installed strictly once would strand it.

A held continuation offered in response to this call MUST be offered BEFORE this method returns. Not a style note – the framework’s logout depends on it, and it is the one ordering requirement this interface makes.

Continuity.clear() empties the port as part of ending a session, and it does that by installing a callback that discards whatever comes back. The window in which it discards is this call, because the framework has no other way to draw the line: a held continuation reaches ContinuityCallback.continuationReceived by exactly the same route a brand new one does, carrying nothing that distinguishes them. A port that answered later would have its pre-logout activity taken as a new arrival and restored into the account that just signed in.

Widening the window instead would break the other half of the same promise. clear() is a logout, not “continuity off”, and it deliberately leaves an enabled framework enabled, so a continuation that genuinely arrives after it – for the account now signing in – has to be delivered. Any window that outlasts the call starts eating those.

Every port here already satisfies this: the iOS bridge hands its pending activity over inline, and a bridge holding nothing satisfies it trivially. Writing it down is what stops the next one from being the exception.

Parameters

callback ContinuityCallback
the seam, never null