You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ServletIntegrationLongPollingUI.java 325B

123456789101112131415
  1. package com.vaadin.tests.integration;
  2. import com.vaadin.annotations.Push;
  3. import com.vaadin.shared.ui.ui.Transport;
  4. /**
  5. * Server test which uses long polling
  6. *
  7. * @since 7.1
  8. * @author Vaadin Ltd
  9. */
  10. @Push(transport = Transport.LONG_POLLING)
  11. public class ServletIntegrationLongPollingUI extends ServletIntegrationUI {
  12. }