Conditionally cache notification

Hi,
when the logging of notification for NETCONF stream is enabled by adding following trivial xml snippet to confd.conf file:

 <notifications>
      <eventStreams>
        <stream>
          <name>NETCONF</name>
          <description>Default netconf event stream</description>
          <replaySupport>true</replaySupport>
          <builtinReplayStore>
            <enabled>true</enabled>
            <dir>/opt/confd/var/confd/log</dir>
            <maxSize>S10M</maxSize>
            <maxFiles>5</maxFiles>
          </builtinReplayStore>
        </stream>
      </eventStreams>
    </notifications>

notification sent by application to the stream will be automatically cached by invoking confd_notification_send function,
so my question is whether there is switch or something else to indicate the notification sent by the function is not to be cached to the stream.
I have some notifications sent to the stream no need to be persistence,but others are needed to be persistence.

thanks for assistance.

There isn’t. If replay is enabled for a stream all notifications send to the stream will be stored.

Thanks for confirmation on this, it seems to me end up using an additional stream.