Examples of Deflector


Examples of org.graylog2.indexer.Deflector

                    }
                };
            }
        };

        final Deflector deflector = mock(Deflector.class);
        final IndexRotationThread rotationThread = new IndexRotationThread(
                mock(NotificationService.class),
                mock(Indices.class),
                deflector,
                mock(ActivityWriter.class),
View Full Code Here

Examples of org.graylog2.indexer.Deflector

                    }
                };
            }
        };

        final Deflector deflector = mock(Deflector.class);
        final IndexRotationThread rotationThread = new IndexRotationThread(
                mock(NotificationService.class),
                mock(Indices.class),
                deflector,
                mock(ActivityWriter.class),
                mock(IndexerSetupService.class),
                provider
            );

        when(deflector.getNewestTargetName()).thenReturn("some_index");

        rotationThread.checkForRotation();

        verify(deflector, times(1)).cycle();
        verify(deflector, times(1)).getNewestTargetName();
View Full Code Here

Examples of org.graylog2.indexer.Deflector

                    }
                };
            }
        };

        final Deflector deflector = mock(Deflector.class);
        final IndexRotationThread rotationThread = new IndexRotationThread(
                mock(NotificationService.class),
                mock(Indices.class),
                deflector,
                mock(ActivityWriter.class),
                mock(IndexerSetupService.class),
                provider
        );

        when(deflector.getNewestTargetName()).thenReturn("some_index");

        rotationThread.checkForRotation();

        verify(deflector, never()).cycle();
        verify(deflector, times(1)).getNewestTargetName();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.