Package com.iizix.server.prop
Interface IRootPropTransactionSender
-
- All Superinterfaces:
ITransactionCreator
- All Known Implementing Classes:
AbstractEndPoint
,ClientTransactionProcessor
,LoadBalancerEndPoint
,RemoteBuilderEndPoint
,ServerSession
,VirtualizedMonitorEndPoint
,VSViewerTransactionProcessor
public interface IRootPropTransactionSender extends ITransactionCreator
Interface for send transaction.- Author:
- Christopher Mindus
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getClientContextMenuReference(UIContextMenu contextMenu)
Gets the reference to use for a context menu.boolean
isConnected()
Verifies that the connection is established and not paused, reconnecting, etc.void
sendTransaction(SendTransaction trans)
Sends the transaction to the remote party.-
Methods inherited from interface com.iizix.comm.ITransactionCreator
createTransaction
-
-
-
-
Method Detail
-
sendTransaction
void sendTransaction(SendTransaction trans)
Sends the transaction to the remote party.- Parameters:
trans
- The transaction.
-
isConnected
boolean isConnected()
Verifies that the connection is established and not paused, reconnecting, etc.- Returns:
- true if connected, false otherwise.
-
getClientContextMenuReference
java.lang.String getClientContextMenuReference(UIContextMenu contextMenu)
Gets the reference to use for a context menu.- Parameters:
contextMenu
- The context menu.- Returns:
- The reference to use, empty string for none (never null).
-
-