热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

org.agrona.concurrent.AgentInvoker.invoke()方法的使用及代码示例

本文整理了Java中org.agrona.concurrent.AgentInvoker.invoke()方法的一些代码示例,展示了AgentInvoker

本文整理了Java中org.agrona.concurrent.AgentInvoker.invoke()方法的一些代码示例,展示了AgentInvoker.invoke()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AgentInvoker.invoke()方法的具体详情如下:
包路径:org.agrona.concurrent.AgentInvoker
类名称:AgentInvoker
方法名:invoke

AgentInvoker.invoke介绍

[英]Invoke the Agent#doWork() method and return the work count.

If an error occurs then the AtomicCounter#increment() will be called on the errorCounter if not null and the Throwable will be passed to the ErrorHandler#onError(Throwable) method. If the error is an AgentTerminationException then #close() will be called after the error handler.

If not successfully started or after closed then this method will return without invoking the Agent.
[中]调用代理#doWork()方法并返回工时计数。
如果发生错误,则如果不为null,将在errorCounter上调用AtomicCounter#increment(),并将Throwable传递给ErrorHandler#onError(Throwable)方法。如果错误是AgentTerminationException,则将在错误处理程序之后调用#close()。
如果未成功启动或关闭,则此方法将返回,而不调用代理。

代码示例

代码示例来源:origin: real-logic/aeron

protected void invokeAeronClient()
{
if (null != aeronClientInvoker)
{
aeronClientInvoker.invoke();
}
}
}

代码示例来源:origin: real-logic/aeron

private void invokeAeronClient()
{
if (null != aeronClientInvoker)
{
aeronClientInvoker.invoke();
}
}

代码示例来源:origin: real-logic/aeron

protected final int invokeDriverConductor()
{
return null != driverAgentInvoker ? driverAgentInvoker.invoke() : 0;
}

代码示例来源:origin: real-logic/aeron

protected int preWork()
{
return super.preWork() +
replayerAgentInvoker.invoke() +
invokeDriverConductor() +
recorderAgentInvoker.invoke() +
invokeDriverConductor();
}

代码示例来源:origin: real-logic/aeron

private void idle(final int workCount)
{
checkInterruptedStatus();
aeronClientInvoker.invoke();
idleStrategy.idle(workCount);
}

代码示例来源:origin: real-logic/aeron

private void idle()
{
checkInterruptedStatus();
aeronClientInvoker.invoke();
idleStrategy.idle();
}

代码示例来源:origin: real-logic/agrona

private void assertExceptionNotReported()
{
invoker.start();
invoker.invoke();
invoker.close();
verify(mockErrorHandler, never()).onError(any());
verify(mockAtomicCounter, never()).increment();
}
}

代码示例来源:origin: real-logic/agrona

@Test
public void shouldNotDoWorkOnClosedRunnerButCallOnClose() throws Exception
{
invoker.close();
invoker.invoke();
verify(mockAgent, never()).onStart();
verify(mockAgent, never()).doWork();
verify(mockErrorHandler, never()).onError(any());
verify(mockAtomicCounter, never()).increment();
verify(mockAgent).onClose();
}

代码示例来源:origin: real-logic/aeron

protected int preWork()
{
int workCount = 0;
final long nowMs = epochClock.time();
if (cachedEpochClock.time() != nowMs)
{
cachedEpochClock.update(nowMs);
markFile.updateActivityTimestamp(nowMs);
workCount += aeronAgentInvoker.invoke();
}
workCount += invokeDriverConductor();
workCount += runTasks(taskQueue);
return workCount;
}

代码示例来源:origin: real-logic/agrona

@Test
public void shouldFollowLifecycle() throws Exception
{
invoker.start();
invoker.start();
verify(mockAgent, times(1)).onStart();
verifyNoMoreInteractions(mockAgent);
invoker.invoke();
invoker.invoke();
verify(mockAgent, times(2)).doWork();
verifyNoMoreInteractions(mockAgent);
invoker.close();
invoker.close();
verify(mockAgent, times(1)).onClose();
verifyNoMoreInteractions(mockAgent);
}

代码示例来源:origin: real-logic/agrona

@Test
public void shouldReportExceptionThrownByAgent() throws Exception
{
final RuntimeException expectedException = new RuntimeException();
when(mockAgent.doWork()).thenThrow(expectedException);
invoker.start();
invoker.invoke();
verify(mockAgent).doWork();
verify(mockErrorHandler).onError(expectedException);
verify(mockAtomicCounter).increment();
verify(mockAgent, never()).onClose();
reset(mockAgent);
invoker.invoke();
verify(mockAgent).doWork();
reset(mockAgent);
invoker.close();
verify(mockAgent, never()).doWork();
verify(mockAgent).onClose();
}

代码示例来源:origin: real-logic/agrona

@Test
public void shouldHandleAgentTerminationExceptionThrownByAgent() throws Exception
{
final RuntimeException expectedException = new AgentTerminationException();
when(mockAgent.doWork()).thenThrow(expectedException);
invoker.start();
invoker.invoke();
verify(mockAgent).doWork();
verify(mockErrorHandler).onError(expectedException);
verify(mockAtomicCounter).increment();
verify(mockAgent).onClose();
assertTrue(invoker.isClosed());
reset(mockAgent);
invoker.invoke();
verify(mockAgent, never()).doWork();
assertTrue(invoker.isClosed());
}

代码示例来源:origin: real-logic/agrona

@Test
public void shouldRemoveAgent() throws Exception
{
final Agent mockAgentOne= mock(Agent.class);
final Agent mockAgentTwo = mock(Agent.class);
final DynamicCompositeAgent compositeAgent = new DynamicCompositeAgent(ROLE_NAME, mockAgentOne, mockAgentTwo);
final AgentInvoker invoker = new AgentInvoker(Throwable::printStackTrace, null, compositeAgent);
invoker.start();
verify(mockAgentOne, times(1)).onStart();
verify(mockAgentTwo, times(1)).onStart();
invoker.invoke();
verify(mockAgentOne, times(1)).doWork();
verify(mockAgentTwo, times(1)).doWork();
assertTrue(compositeAgent.tryRemove(mockAgentTwo));
assertFalse(compositeAgent.hasRemoveAgentCompleted());
invoker.invoke();
assertTrue(compositeAgent.hasRemoveAgentCompleted());
verify(mockAgentOne, times(2)).doWork();
verify(mockAgentTwo, times(1)).doWork();
verify(mockAgentOne, times(1)).onStart();
verify(mockAgentTwo, times(1)).onStart();
verify(mockAgentTwo, times(1)).onClose();
}

代码示例来源:origin: real-logic/agrona

@Test
public void shouldReportExceptionThrownOnStart() throws Exception
{
final RuntimeException expectedException = new RuntimeException();
Mockito.doThrow(expectedException).when(mockAgent).onStart();
invoker.start();
invoker.invoke();
verify(mockAgent, never()).doWork();
verify(mockErrorHandler).onError(expectedException);
verify(mockAgent).onClose();
assertTrue(invoker.isStarted());
assertFalse(invoker.isRunning());
assertTrue(invoker.isClosed());
}

代码示例来源:origin: real-logic/agrona

@Test
public void shouldAddAgent() throws Exception
{
final Agent mockAgentOne= mock(Agent.class);
final DynamicCompositeAgent compositeAgent = new DynamicCompositeAgent(ROLE_NAME, mockAgentOne);
final AgentInvoker invoker = new AgentInvoker(Throwable::printStackTrace, null, compositeAgent);
assertThat(compositeAgent.roleName(), is(ROLE_NAME));
invoker.start();
verify(mockAgentOne, times(1)).onStart();
invoker.invoke();
verify(mockAgentOne, times(1)).onStart();
verify(mockAgentOne, times(1)).doWork();
final Agent mockAgentTwo = mock(Agent.class);
assertTrue(compositeAgent.tryAdd(mockAgentTwo));
assertFalse(compositeAgent.hasAddAgentCompleted());
invoker.invoke();
assertTrue(compositeAgent.hasAddAgentCompleted());
verify(mockAgentOne, times(1)).onStart();
verify(mockAgentOne, times(2)).doWork();
verify(mockAgentTwo, times(1)).onStart();
verify(mockAgentTwo, times(1)).doWork();
}

代码示例来源:origin: real-logic/aeron

aeronClientInvoker.invoke();

代码示例来源:origin: real-logic/agrona

@Test
public void shouldDetectConcurrentRemove()
{
final Agent mockAgentOne= mock(Agent.class);
final Agent mockAgentTwo = mock(Agent.class);
final DynamicCompositeAgent compositeAgent = new DynamicCompositeAgent(ROLE_NAME, mockAgentOne, mockAgentTwo);
final AgentInvoker invoker = new AgentInvoker(Throwable::printStackTrace, null, compositeAgent);
invoker.start();
assertTrue(compositeAgent.tryAdd(mockAgentOne));
invoker.invoke();
assertTrue(compositeAgent.tryAdd(mockAgentTwo));
invoker.invoke();
assertTrue(compositeAgent.tryRemove(mockAgentOne));
assertFalse(compositeAgent.tryRemove(mockAgentTwo));
invoker.invoke();
assertTrue(compositeAgent.tryRemove(mockAgentTwo));
}
}

代码示例来源:origin: real-logic/aeron

private void snapshotState(final Publication publication, final long logPosition, final long leadershipTermId)
{
final ConsensusModuleSnapshotTaker snapshotTaker = new ConsensusModuleSnapshotTaker(
publication, idleStrategy, aeronClientInvoker);
snapshotTaker.markBegin(SNAPSHOT_TYPE_ID, logPosition, leadershipTermId, 0);
for (final ClusterSession session : sessionByIdMap.values())
{
if (session.state() == OPEN || session.state() == CLOSED)
{
snapshotTaker.snapshotSession(session);
}
}
aeronClientInvoker.invoke();
timerService.snapshot(snapshotTaker);
snapshotTaker.consensusModuleState(nextSessionId);
snapshotTaker.clusterMembers(memberId, highMemberId, clusterMembers);
snapshotTaker.markEnd(SNAPSHOT_TYPE_ID, logPosition, leadershipTermId, 0);
}

代码示例来源:origin: real-logic/agrona

@Test
public void shouldDetectConcurrentAdd()
{
final Agent mockAgentOne= mock(Agent.class);
final Agent mockAgentTwo = mock(Agent.class);
final DynamicCompositeAgent compositeAgent = new DynamicCompositeAgent(ROLE_NAME, mockAgentOne, mockAgentTwo);
final AgentInvoker invoker = new AgentInvoker(Throwable::printStackTrace, null, compositeAgent);
invoker.start();
assertTrue(compositeAgent.tryAdd(mockAgentOne));
assertFalse(compositeAgent.tryAdd(mockAgentTwo));
invoker.invoke();
assertTrue(compositeAgent.tryAdd(mockAgentTwo));
}

代码示例来源:origin: real-logic/aeron

aeronClientInvoker.invoke();

推荐阅读
  • 本文详细介绍了在 CentOS 7 系统中配置 fstab 文件以实现开机自动挂载 NFS 共享目录的方法,并解决了常见的配置失败问题。 ... [详细]
  • Spring Boot 中配置全局文件上传路径并实现文件上传功能
    本文介绍如何在 Spring Boot 项目中配置全局文件上传路径,并通过读取配置项实现文件上传功能。通过这种方式,可以更好地管理和维护文件路径。 ... [详细]
  • com.hazelcast.config.MapConfig.isStatisticsEnabled()方法的使用及代码示例 ... [详细]
  • Java高并发与多线程(二):线程的实现方式详解
    本文将深入探讨Java中线程的三种主要实现方式,包括继承Thread类、实现Runnable接口和实现Callable接口,并分析它们之间的异同及其应用场景。 ... [详细]
  • 开机自启动的几种方式
    0x01快速自启动目录快速启动目录自启动方式源于Windows中的一个目录,这个目录一般叫启动或者Startup。位于该目录下的PE文件会在开机后进行自启动 ... [详细]
  • 在《Linux高性能服务器编程》一书中,第3.2节深入探讨了TCP报头的结构与功能。TCP报头是每个TCP数据段中不可或缺的部分,它不仅包含了源端口和目的端口的信息,还负责管理TCP连接的状态和控制。本节内容详尽地解析了TCP报头的各项字段及其作用,为读者提供了深入理解TCP协议的基础。 ... [详细]
  • Java Socket 关键参数详解与优化建议
    Java Socket 的 API 虽然被广泛使用,但其关键参数的用途却鲜为人知。本文详细解析了 Java Socket 中的重要参数,如 backlog 参数,它用于控制服务器等待连接请求的队列长度。此外,还探讨了其他参数如 SO_TIMEOUT、SO_REUSEADDR 等的配置方法及其对性能的影响,并提供了优化建议,帮助开发者提升网络通信的稳定性和效率。 ... [详细]
  • 在Cisco IOS XR系统中,存在提供服务的服务器和使用这些服务的客户端。本文深入探讨了进程与线程状态转换机制,分析了其在系统性能优化中的关键作用,并提出了改进措施,以提高系统的响应速度和资源利用率。通过详细研究状态转换的各个环节,本文为开发人员和系统管理员提供了实用的指导,旨在提升整体系统效率和稳定性。 ... [详细]
  • Python 伦理黑客技术:深入探讨后门攻击(第三部分)
    在《Python 伦理黑客技术:深入探讨后门攻击(第三部分)》中,作者详细分析了后门攻击中的Socket问题。由于TCP协议基于流,难以确定消息批次的结束点,这给后门攻击的实现带来了挑战。为了解决这一问题,文章提出了一系列有效的技术方案,包括使用特定的分隔符和长度前缀,以确保数据包的准确传输和解析。这些方法不仅提高了攻击的隐蔽性和可靠性,还为安全研究人员提供了宝贵的参考。 ... [详细]
  • 优化后的标题:深入探讨网关安全:将微服务升级为OAuth2资源服务器的最佳实践
    本文深入探讨了如何将微服务升级为OAuth2资源服务器,以订单服务为例,详细介绍了在POM文件中添加 `spring-cloud-starter-oauth2` 依赖,并配置Spring Security以实现对微服务的保护。通过这一过程,不仅增强了系统的安全性,还提高了资源访问的可控性和灵活性。文章还讨论了最佳实践,包括如何配置OAuth2客户端和资源服务器,以及如何处理常见的安全问题和错误。 ... [详细]
  • 在Java Web服务开发中,Apache CXF 和 Axis2 是两个广泛使用的框架。CXF 由于其与 Spring 框架的无缝集成能力,以及更简便的部署方式,成为了许多开发者的首选。本文将详细介绍如何使用 CXF 框架进行 Web 服务的开发,包括环境搭建、服务发布和客户端调用等关键步骤,为开发者提供一个全面的实践指南。 ... [详细]
  • 开发日志:201521044091 《Java编程基础》第11周学习心得与总结
    开发日志:201521044091 《Java编程基础》第11周学习心得与总结 ... [详细]
  • 如何利用Java 5 Executor框架高效构建和管理线程池
    Java 5 引入了 Executor 框架,为开发人员提供了一种高效管理和构建线程池的方法。该框架通过将任务提交与任务执行分离,简化了多线程编程的复杂性。利用 Executor 框架,开发人员可以更灵活地控制线程的创建、分配和管理,从而提高服务器端应用的性能和响应能力。此外,该框架还提供了多种线程池实现,如固定线程池、缓存线程池和单线程池,以适应不同的应用场景和需求。 ... [详细]
  • 在使用SSH框架进行项目开发时,经常会遇到一些常见的问题。例如,在Spring配置文件中配置AOP事务声明后,进行单元测试时可能会出现“No Hibernate Session bound to thread”的错误。本文将详细探讨这一问题的原因,并提供有效的解决方案,帮助开发者顺利解决此类问题。 ... [详细]
  • 本文介绍了UUID(通用唯一标识符)的概念及其在JavaScript中生成Java兼容UUID的代码实现与优化技巧。UUID是一个128位的唯一标识符,广泛应用于分布式系统中以确保唯一性。文章详细探讨了如何利用JavaScript生成符合Java标准的UUID,并提供了多种优化方法,以提高生成效率和兼容性。 ... [详细]
author-avatar
傻要傻到嗨样
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有