Class OutboundEvent.Builder

    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • reconnectDelay

        public OutboundEvent.Builder reconnectDelay​(long milliseconds)
        Set reconnection delay (in milliseconds) that indicates how long the event receiver should wait before attempting to reconnect in case a connection to SSE event source is lost.

        Will be send as a value of the SSE "retry" field. This field is optional.

        Absence of a value of this field in an OutboundEvent instance is indicated by SseFeature.RECONNECT_NOT_SET value returned from OutboundEvent.getReconnectDelay().

        Specified by:
        reconnectDelay in interface OutboundSseEvent.Builder
        Parameters:
        milliseconds - reconnection delay in milliseconds. Negative values un-set the reconnection delay.
        Returns:
        updated builder instance.
        Since:
        2.3
      • comment

        public OutboundEvent.Builder comment​(String comment)
        Set comment string associated with the event. The comment will be serialized with the event, before event data are serialized. If the event does not contain any data, a separate "event" that contains only the comment will be sent. This information is optional, provided the event data are set.

        Note that multiple invocations of this method result in a previous comment being replaced with a new one. To achieve multi-line comments, a multi-line comment string has to be used.

        Specified by:
        comment in interface OutboundSseEvent.Builder
        Parameters:
        comment - comment string.
        Returns:
        updated builder instance.
      • data

        public OutboundEvent.Builder data​(Class type,
                                          Object data)
        Set event data and java type of event data. Type information will be used for MessageBodyWriter lookup.

        Note that multiple invocations of this method result in previous even data being replaced with new one.

        Specified by:
        data in interface OutboundSseEvent.Builder
        Parameters:
        type - java type of supplied data. Must not be null.
        data - event data. Must not be null.
        Returns:
        updated builder instance.
        Throws:
        NullPointerException - in case either type or data parameter is null.
      • data

        public OutboundEvent.Builder data​(GenericType type,
                                          Object data)
        Set event data and a generic java type of event data. Type information will be used for MessageBodyWriter lookup.

        Note that multiple invocations of this method result in previous even data being replaced with new one.

        Specified by:
        data in interface OutboundSseEvent.Builder
        Parameters:
        type - generic type of supplied data. Must not be null.
        data - event data. Must not be null.
        Returns:
        updated builder instance.
        Throws:
        NullPointerException - in case either type or data parameter is null.
        Since:
        2.3
      • data

        public OutboundEvent.Builder data​(Object data)
        Set event data and java type of event data. This is a convenience method that derives the event data type information from the runtime type of the event data. The supplied event data may be represented as GenericEntity.

        Note that multiple invocations of this method result in previous even data being replaced with new one.

        Specified by:
        data in interface OutboundSseEvent.Builder
        Parameters:
        data - event data. Must not be null.
        Returns:
        updated builder instance.
        Throws:
        NullPointerException - in case the data parameter is null.
        Since:
        2.3