- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 n 个生产者线程通过 BlockingQueue 为 1 个消费者线程提供数据。我正在使用 .put 和 .take (后者当 .peek != null 时)。除了明显在传输过程中不可避免的数据损坏之外,这对于至少十几条消息来说工作正常。目前我只实例化一个生产者线程。
例如,生产者线程将识别一个矩形并设置对象值,然后通过该对象的获取的调试行显示这些值。损坏之前设置的值的示例;22:13:36.797 [Thread-1] DEBUG a.i.AdvancedVideoAnalytics - ROI = {574, 88, 42x110}
然后,消费者获取消息,这里是一个调试行,其中提取的值与前一个线程中的方式完全相同。显示了“损坏”值集的示例;
22:13:36.887 [Thread-0] DEBUG a.i.AwarenessAnalytics - ROI = {574, -1, 42x89}
相关生产者代码;
FrameWithMotionDetection frameWithMotionDetection;
private final BlockingQueue<FrameWithMotionDetection> queue;
...
frameWithMotionDetection = new FrameWithMotionDetection();
frameWithMotionDetection.setMotionData(contourAnalysisResults);
frameWithMotionDetection.setCurrentFrame(frameToExamine);
frameWithMotionDetection.setCamera(camera);
logger.debug("FrameWithMotionDetection.CameraID = {}", frameWithMotionDetection.getCamera().getCameraId());
System.out.println("Preparing to send message to AwarenessAnalytics thread");
try {
queue.put(frameWithMotionDetection);
}catch (InterruptedException ex) {
System.out.println("Exception in queue.put: " + ex );
}
主应用程序线程生成消费者线程;
FrameWithMotionDetection frameWithMotionDetection = new FrameWithMotionDetection();
BlockingQueue<FrameWithMotionDetection> q = new ArrayBlockingQueue<FrameWithMotionDetection>(1024);
AwarenessAnalytics awarenessAnalytic = new AwarenessAnalytics(q);
相关消费者代码;
public AwarenessAnalytics(BlockingQueue<FrameWithMotionDetection> q) {
this.queue = q;
}
...
FrameWithMotionDetection frameWithMotionDetection;
private final BlockingQueue<FrameWithMotionDetection> queue;
...
while (queue.peek() != null){
frameWithMotionDetection = new FrameWithMotionDetection();
try {
frameWithMotionDetection = queue.take();
frameWithMotionDetectionFromQueue.add(frameWithMotionDetection);
framesToEvaluate = true;
}catch (InterruptedException ex) {
logger.error("Exception in queue.take: {}", ex );
}
logger.debug("FrameMsg received");
}
生产者线程(AdvancedVideoAnalytics)由消费者线程产生;
tempIntermediateVA = new AdvancedVideoAnalytics(queue);
鉴于大多数数据传输的成功性质,BlockingQueue 是潜在问题还是我应该寻找其他地方?
更新:
正在努力在通过 BlockingQueue 发送之前最终确定某些变量。这需要一个定义为的构造函数;
public FrameWithMotionDetection(
ContourAnalysisResults motionData,
Mat currentFrame,
Camera camera) {
this.motionData = motionData;
this.currentFrame = currentFrame;
this.camera = camera;
}
现在我正在努力定义一个构造函数,它允许我简单地从queue.take调用中实例化对象;
frameWithMotionDetection = new FrameWithMotionDetection(queue.take());
或者这是错误的做法吗?
更新2:在.take()之后直接插入调试语句,很明显问题不是BlockingQueue,因此将检查其他方面。感谢大家的帮助。
更新3:事实证明,我传递的复杂对象并未在使用者中实例化为新对象。我以为我创建了一个新实例,甚至将对象中的一些变量设置为最终的。一旦我停止在生产者线程中重置和重用复杂对象(现在每次都创建一个新对象),问题就消失了。有几个人非常乐于助人,并向@markspace 致敬。
最佳答案
如果没有所有代码,很难准确说出问题所在。但根据您提供给我们的信息,您正在为所有线程使用共享的 FrameWithMotionDetection 对象。
如果您在与 BlockingQueue
相同的级别和范围内定义 FrameWithMotionDetection
,那么您就做错了。
在方法中定义FrameWithMotionDetection
,并且不要让其转义该方法。
这当然与BlockingQueue
无关。
关于Java BlockingQueue 似乎在传输过程中损坏了数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30312095/
我的理解是1.5加入了callable,runnable接口(interface)保持原样,防止世界末日。为什么我不能实例化 ThreadPoolExecutor (core, max, tu, un
我正在制作一个包含两个线程的应用程序:其中一个向 LinkedBlockingQueue 写入一个值,另一个正在读取。我正在使用 ScheduledExecutorService 在某个时间段内以秒为
我正在尝试 Autowiring 参数化的阻塞队列: @Bean(name = "saveProductQueue") public BlockingQueue saveProductQueue()
我正在实现一个程序,其中主线程将各种消息推送到工作线程,而工作线程将工作结果推送回主线程。 为此,我计划使用两个队列,一个用于推送到工作线程,另一个用于从中拉出。 据我了解,线程会缓存对象,因此如果它
我正在使用 RabbitMQ,它默认为消费者使用 LinkedBlockingQueue 。它有一个阻塞的 nextDelivery() 方法,该方法基本上调用队列上的 take() 。 但是如果在调
我有 n 个生产者线程通过 BlockingQueue 为 1 个消费者线程提供数据。我正在使用 .put 和 .take (后者当 .peek != null 时)。除了明显在传输过程中不可避免的数
我已经实现了一个带有套接字线程池的两人游戏。每个玩家都连接到自己的线程。我按照this添加了一个消息队列系统文章。 问题是消息滞后。第一个玩家的第一个响应会按预期添加到 messageQueue 中。
据我所知,BlockingCollection 使用非繁忙等待,这是对新项目/回调的通知。所以我不明白它是如何阻塞的,但我认为我可能混合了阻塞的线程和阻塞的共享对象访问? 最佳答案 这是一个很好的解释
我的 Android 应用程序有一个长时间运行的后台服务,据我所知,它在应用程序的主线程中运行,因此,任何耗时或阻塞的任务都应移至单独的线程。 现在,情况是这样的,我不明白/困惑: 当我从一个 Act
我在数据库前面使用 LinkedBlockingQueue。一个线程写入队列,另一个线程从队列读取。 我认为两个并发写入是不可能的。但是是否有可能一个线程写入而另一个线程同时从队列中读取呢?如果没有,
我有一个在单个后台线程上处理工作事件的 BlockingQueue。各种线程调用 add 将一些工作添加到队列中,单个后台线程调用 take 获取工作并一次处理一个。最终可能是停止处理工作的时候了,我
我在多线程系统中使用 BlockingQueue,其中同步块(synchronized block)将项目添加到列表中。有时它不会将项目添加到列表中,它遗漏的项目是随机的。我尝试将以下行添加到代码中,
我有以下阻塞队列; final BlockingQueue blockingQueue = new LinkedBlockingQueue(); 在哪里 public class Message
这个问题的标题让我怀疑这是否存在,但仍然: 我感兴趣的是是否有 Java 的 BlockingQueue 的实现,它受大小限制,从不阻塞,而是在尝试入队太多元素时抛出异常。 编辑 - 我将 Block
假设我有 BlockingQueue 并且一些线程被称为 take() 但此时队列是空的。假设我以某种方式知道将来不会有新元素出现在队列中。如何释放那些被称为 take() 的线程等待?谢谢! p
我想要一个线程安全的容器,它会阻止调用者,直到有项目可用为止。项目将以每秒 1000 秒的速度添加到此容器中,但不会以相同的速度排出。因此,我希望容器不允许重复。我围绕 LinkedBlockingQ
我正在使用 BlockingQueue(LinkedBlockingQueue) 在多个线程之间同步数据。请看下图。 主线程是一个生产者,它生产对象,然后将它们放入每个消费者的队列中(线程2-10)。
我有一个容量为 1 的 BlockingQueue。它存储收到的股票的最后价格。价格保留在队列中,直到客户端轮询队列。然后,我有一个名为 getLatestPrice() 的方法,它应该返回股票的最新
我的 Java 代码中使用 BlockingQueue 时存在潜在的竞争条件,我想知道如何修改代码来避免这种情况: private static BlockingQueue ftpQueue = ne
我有一种情况需要 BlockingQueue 上的方法 peekWait。我会将此方法描述为 retrieves but not remove the head of the queue, waiti
我是一名优秀的程序员,十分优秀!