Package com.kurento.kmf.content

Examples of com.kurento.kmf.content.ContentApiConfiguration


@RunWith(Arquillian.class)
public class CustomConfigurationIT extends BaseArquillianTst {

  @Test
  public void testCustomConfigByProperties() {
    ContentApiConfiguration configuration = KurentoApplicationContextUtils
        .getConfiguration(ContentApiConfiguration.class);

    Assert.assertEquals(20, configuration.getPoolCoreSize());
  }
View Full Code Here


    Assert.assertEquals(20, configuration.getPoolCoreSize());
  }

  @Test
  public void testCustomConfigBySpring() {
    ContentApiConfiguration configuration = KurentoApplicationContextUtils
        .getConfiguration(ContentApiConfiguration.class);

    Assert.assertEquals(200, configuration.getProxyMaxConnectionsPerRoute());
  }
View Full Code Here

TOP

Related Classes of com.kurento.kmf.content.ContentApiConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.