rename OHLCValue -> OHLCEvent

This commit is contained in:
2018-06-20 22:28:42 -07:00
parent ced385ef8a
commit ff5fa69e7d
5 changed files with 51 additions and 63 deletions

View File

@ -231,7 +231,7 @@ public class OHLCPlugInView extends ViewSupport {
private void postData() {
if (open == null) return;
OHLCValue value = new OHLCValue(windowStartTime, open, high, low, close);
OHLCEvent value = new OHLCEvent(windowStartTime, open, high, low, close);
// send
EventAdapterService service = agentContext.getStatementContext().getEventAdapterService();
@ -261,8 +261,8 @@ public class OHLCPlugInView extends ViewSupport {
protected static EventType getEventType(EventAdapterService service)
{
return service.addBeanType(OHLCValue.class.getName(),
OHLCValue.class,
return service.addBeanType(OHLCEvent.class.getName(),
OHLCEvent.class,
false, false, false);
}