Skip to content

Commit

Permalink
#42: Create software release 1.2.0. Changed CA_MONITOR_NOTIFIER to CA…
Browse files Browse the repository at this point in the history
…_MONITOR_NOTIFIER_IMPL and CA_MONITOR_NOTIFIER_DEFAULT to CA_MONITOR_NOTIFIER_DEFAULT_IMPL.
  • Loading branch information
simondelabici committed Jul 24, 2018
1 parent c0d92a3 commit a196039
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/org/epics/ca/Constants.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package org.epics.ca;

import org.epics.ca.impl.monitor.MonitorNotificationServiceFactory;

public interface Constants
{

Expand All @@ -26,12 +28,12 @@ public static enum ChannelProperties
/**
* String value of the JVM property key to configure the monitor notification engine.
*/
public static final String CA_MONITOR_NOTIFIER = "CA_MONITOR_NOTIFIER";
public static final String CA_MONITOR_NOTIFIER_IMPL = "CA_MONITOR_NOTIFIER_IMPL";

/**
* String value defining the default monitor notification engine.
*/
public static final String CA_MONITOR_NOTIFIER_DEFAULT = "MultipleWorkerBlockingQueueMonitorNotificationServiceImpl";
public static final String CA_MONITOR_NOTIFIER_DEFAULT_IMPL = MonitorNotificationServiceFactory.DEFAULT_IMPL;

/**
* Minimal priority.
Expand Down

0 comments on commit a196039

Please sign in to comment.