Class TOBOEntityChannel
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final com.caplin.datasource.blotter.BlotterChannel -
Constructor Summary
ConstructorsConstructorDescriptionTOBOEntityChannel(com.caplin.datasource.blotter.BlotterChannel blotterChannel) -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Clears allBlotterItems from the internal cache and sends a container clear so that these items are no longer requested when the channel is subscribed to.voidCloses the channel.Returns the parameters for the channelReturns the subject for the channel.Returns the username for the channelvoidremoveTOBOEntities(List<String> toboEntityIds) RemovesBlotterItems from the internal cache and sends a container remove so that these items are no longer requested when the channel is subscribed to.voidremoveTOBOEntity(String toboEntityId) Removes theBlotterItemfrom the internal cache and sends a container remove so that this item is no longer requested when the channel is subscribed to.voidSends an empty container on the channel.voidsendTOBOEntity(com.caplin.datasource.blotter.BlotterItem item) Adds theBlotterItemto the internal cache and sends a container add so that this item is requested when the channel is subscribed to.voidsendTOBOEntityContainerStatusOk(String message) Sends a status ok on the channel with custom message.voidSends a status stale on the channel.voidsendTOBOEntityContainerStatusStale(String message) Sends a status stale on the channel with custom message.voidsendTOBOEntityMapping(String newSubject) Sends aMappingMessageto the Liberator, requesting that the Liberator map thisTOBOEntityChannelinstance's subject to the specified subjectnewSubject.voidsendTOBOEntityNotFound(String uniqueId) Sends a not found for aBlotterItem.voidSends a status ok on the channel.voidsendTOBOEntityStatusOk(String toboEntityId) Send status ok for aBlotterItem.voidsendTOBOEntityStatusStale(String toboEntityId) Send status stale for aBlotterItem.voidsetTOBOEntityItems(List<com.caplin.datasource.blotter.BlotterItem> items) AddsBlotterItems to the internal cache and sends a container add so that these items are requested when the channel is subscribed to.
-
Field Details
-
blotterChannel
protected final com.caplin.datasource.blotter.BlotterChannel blotterChannel
-
-
Constructor Details
-
TOBOEntityChannel
public TOBOEntityChannel(com.caplin.datasource.blotter.BlotterChannel blotterChannel)
-
-
Method Details
-
closeChannel
public void closeChannel()Closes the channel.
Sends a Subject Not Found on the channel's subject to let subscribers know that it is no longer serviced.
-
getSubject
Returns the subject for the channel.
- Returns:
- subject for the channel
-
getUsername
Returns the username for the channel
- Returns:
- username for the channel
-
getParameters
Returns the parameters for the channel
- Returns:
- parameters for the channel
-
removeTOBOEntity
Removes the
BlotterItemfrom the internal cache and sends a container remove so that this item is no longer requested when the channel is subscribed to.- Parameters:
toboEntityId- of the tobo entity item to remove
-
removeTOBOEntities
Removes
BlotterItems from the internal cache and sends a container remove so that these items are no longer requested when the channel is subscribed to.- Parameters:
toboEntityIds- of the entity items to remove
-
clear
public void clear()Clears all
BlotterItems from the internal cache and sends a container clear so that these items are no longer requested when the channel is subscribed to. -
sendTOBOEntity
public void sendTOBOEntity(com.caplin.datasource.blotter.BlotterItem item) Adds the
BlotterItemto the internal cache and sends a container add so that this item is requested when the channel is subscribed to.If an item with the same unique id already exists in the internal cache then that item's fields will be updated with this one. This will then trigger an update for any users currently subscribed to this item.
- Parameters:
item- TOBO entity to send
-
sendTOBOEntityNotFound
Sends a not found for a
BlotterItem.Specifically for the case where there is more than one Integration Adapter providing for the same channel subject.
Sent in response to a
BlotterChannelListener.onBlotterItemRequest(com.caplin.datasource.blotter.BlotterChannel, java.lang.String)when the item requested is not serviceable by your application.- Parameters:
uniqueId- of item that cannot be serviced by your application.
-
setTOBOEntityItems
Adds
BlotterItems to the internal cache and sends a container add so that these items are requested when the channel is subscribed to.If any items with the same unique id already exists in the internal cache then these items fields will be updated with these one. This will then trigger an update for any users currently subscribed to these items.
- Parameters:
items- to send
-
sendTOBOEntityMapping
Sends a
MappingMessageto the Liberator, requesting that the Liberator map thisTOBOEntityChannelinstance's subject to the specified subjectnewSubject.Note: Liberator applies mapping rules configured by mapping messages after it applies mapping rules configured by
object-mapconfig items.This method can be used to provide a user with access to a shared group blotter via a general subject, such as /PRIVATE/FX/GROUPBLOTTER. In the
TOBOEntityListener.toboEntityChannelOpened(TOBOEntityChannel)method for the general subject, determine which group the user is a member of and callsendTOBOEntityMapping(java.lang.String), passing it the subject of the group's blotter.- Parameters:
newSubject- the subject to map this blotter's subject to
-
sendTOBOEntityStatusOk
Send status ok for a
BlotterItem.Under normal circumstances this method is not used.
- Parameters:
toboEntityId- of the message whose status is OK
-
sendTOBOEntityStatusStale
Send status stale for a
BlotterItem.Under normal circumstances this method is not used.
- Parameters:
toboEntityId- of the message whose status is STALE
-
sendTOBOEntityStatusOk
public void sendTOBOEntityStatusOk()Sends a status ok on the channel.
Under normal circumstances this method is not used.
-
sendTOBOEntityContainerStatusStale
Sends a status stale on the channel with custom message.
Under normal circumstances this method is not used.
-
sendTOBOEntityContainerStatusOk
Sends a status ok on the channel with custom message.
Under normal circumstances this method is not used.
-
sendTOBOEntityContainerStatusStale
public void sendTOBOEntityContainerStatusStale()Sends a status stale on the channel.
Under normal circumstances this method is not used.
-
sendEmptyTOBOEntityContainer
public void sendEmptyTOBOEntityContainer()Sends an empty container on the channel.
Invoke when a
TOBOEntityListener.toboEntityChannelOpened(TOBOEntityChannel)callback is received and there are currently noBlotterItems to be added for the channel.Note: This method is not required if the blotter Configuration option
BlotterConfiguration.setAutoSendEmptyContainer()is turned on, in which case the API will send out an empty container for a TOBO Entity channel that was opened - unless it is materialized paths
-