{"id":15069677,"url":"https://github.com/mikenew01/clark","last_synced_at":"2026-01-18T01:36:05.409Z","repository":{"id":120391003,"uuid":"193274659","full_name":"mikenew01/clark","owner":"mikenew01","description":"Project clark aims to provide a library for parallel data processing.","archived":false,"fork":false,"pushed_at":"2019-06-23T14:38:49.000Z","size":76,"stargazers_count":2,"open_issues_count":8,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-10T14:52:42.194Z","etag":null,"topics":["concurrency","concurrent-programming","executor-framework","executor-service","fork-join","jar","java","java-7","java-7-compatible","javase","maven","parallel","parallel-processing"],"latest_commit_sha":null,"homepage":"https://github.com/Maikoncanuto/clark","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mikenew01.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-06-22T20:01:52.000Z","updated_at":"2023-02-18T16:39:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"c1fc8b1d-53f1-49d1-8347-41c074727e90","html_url":"https://github.com/mikenew01/clark","commit_stats":null,"previous_names":["mikenew01/clark"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikenew01%2Fclark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikenew01%2Fclark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikenew01%2Fclark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikenew01%2Fclark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mikenew01","download_url":"https://codeload.github.com/mikenew01/clark/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247299850,"owners_count":20916193,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["concurrency","concurrent-programming","executor-framework","executor-service","fork-join","jar","java","java-7","java-7-compatible","javase","maven","parallel","parallel-processing"],"created_at":"2024-09-25T01:44:01.127Z","updated_at":"2026-01-18T01:36:05.191Z","avatar_url":"https://github.com/mikenew01.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CLARK\n\nProject clark aims to provide a library for parallel data processing.\n\n\n## How to use ?\nTo use the framework it is necessary that you have configured version 3 of maven and java 7 in the project.\n\n### Example of use:a\n````maven\n  \u003cdependencies\u003e\n      \u003cdependency\u003e\n          \u003cgroupId\u003ecom.github.maikoncanuto\u003c/groupId\u003e\n          \u003cartifactId\u003eclark\u003c/artifactId\u003e\n          \u003cversion\u003e1.0.1\u003c/version\u003e\n      \u003c/dependency\u003e\n  \u003c/dependencies\u003e\n````\n\n````java\n//hidden imports \n\n//Class responsible for containing processing logic\npublic class ExampleProcessor implements Processor\u003cString, Integer\u003e {\n\n    @Override\n    public Result\u003cString\u003e run(final List\u003cInteger\u003e list) {\n        Result\u003cString\u003e result = new Result\u003cString\u003e();\n\n        for (Integer i : list) {\n            result.getProcessedElements().add(i + \" - Test\");\n        }\n\n        return result;\n    }\n}\n\n//Class responsible for performing the processing\npublic class Main {\n    public static void main(String[] args) throws ExecutionException, InterruptedException {\n\n        List\u003cInteger\u003e numbers = Arrays.asList(1, 2, 3, 4);\n\n        Result\u003cString\u003e result = ProcessorHandler\n                        .getProcessor(Type.ASYNCHRONOUS)\n                        .run(new Data\u003c\u003e(numbers), new ExampleProcessor());\n\n        System.out.println(result.getProcessedElements().size());\n    }\n}\n\n````\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikenew01%2Fclark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmikenew01%2Fclark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikenew01%2Fclark/lists"}