You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
942 B
31 lines
942 B
package foundation.pEp.jniadapter;
|
|
|
|
public interface AbstractEngineInterface {
|
|
public String getVersion();
|
|
|
|
public String getProtocolVersion();
|
|
|
|
public void startKeyserverLookup();
|
|
|
|
public void stopKeyserverLookup();
|
|
|
|
public void startSync();
|
|
|
|
public void stopSync();
|
|
|
|
public boolean isSyncRunning();
|
|
|
|
public void setMessageToSendCallback(Sync.MessageToSendCallback messageToSendCallback);
|
|
|
|
public void setNotifyHandshakeCallback(Sync.NotifyHandshakeCallback notifyHandshakeCallback);
|
|
|
|
public void setNeedsFastPollCallback(Sync.NeedsFastPollCallback needsFastPollCallback);
|
|
|
|
public int needsFastPollCallFromC(boolean fast_poll_needed);
|
|
|
|
public int notifyHandshakeCallFromC(_Identity _myself, _Identity _partner, SyncHandshakeSignal _signal);
|
|
|
|
public int messageToSendCallFromC(Message message);
|
|
|
|
public Message incomingMessageFromPGPText(String pgpText, Message.EncFormat encFormat);
|
|
}
|
|
|