Examples of CSVFeedService


Examples of com.nagarro.jsag.fjt.gall.services.CSVFeedService

    }
   
    @Override
    public final void service() throws ServiceException {
        try {
            final CSVFeedService csvFeedService = CSVFeedService.getService(ServiceType.READER);
            csvFeedService.setCSVFile(this.currentFile);
            this.getReaderServices().add(this.executorService.submit(csvFeedService));
        } catch (final DAOException exception) {
            StandardDirectoryService.LOG.error(MethodUtils.errorMessage(exception));
            throw new ServiceException(ServiceException.DEFAULT_MESSAGE, exception);
        }
View Full Code Here

Examples of com.nagarro.jsag.fjt.gall.services.CSVFeedService

           
            final Iterator<WatchEvent<?>> watchEventIterator = this.getWatchKey().pollEvents().iterator();
            while (watchEventIterator.hasNext()) {
                final WatchEvent<?> watchEvent = watchEventIterator.next();
                if (StandardWatchEventKinds.ENTRY_CREATE == watchEvent.kind()) {
                    final CSVFeedService csvFeedService = CSVFeedService.getService(ServiceType.READER);
                    csvFeedService.setCSVFile(Paths.get(this.getDirectoryPath().toAbsolutePath().toString(),
                            (((WatchEvent<Path>) watchEvent).context().getFileName().toString())).toFile());
                    this.getReaderServices().add(this.executorService.submit(csvFeedService));
                }
            }
        } catch (final DAOException exception) {
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.